diff --git a/src/app/Console/Commands/Scalpel/WalletSetting/CreateCommand.php b/src/app/Console/Commands/Scalpel/WalletSetting/CreateCommand.php --- a/src/app/Console/Commands/Scalpel/WalletSetting/CreateCommand.php +++ b/src/app/Console/Commands/Scalpel/WalletSetting/CreateCommand.php @@ -6,7 +6,7 @@ class CreateCommand extends ObjectCreateCommand { - protected $cacheKeys = ['wallet_settings_%wallet_id%']; + protected $cacheKeys = ['app\wallet_settings_%wallet_id%']; protected $commandPrefix = 'scalpel'; protected $objectClass = \App\WalletSetting::class; protected $objectName = 'wallet-setting'; diff --git a/src/app/Console/Commands/Scalpel/WalletSetting/UpdateCommand.php b/src/app/Console/Commands/Scalpel/WalletSetting/UpdateCommand.php --- a/src/app/Console/Commands/Scalpel/WalletSetting/UpdateCommand.php +++ b/src/app/Console/Commands/Scalpel/WalletSetting/UpdateCommand.php @@ -6,7 +6,7 @@ class UpdateCommand extends ObjectUpdateCommand { - protected $cacheKeys = ['wallet_settings_%wallet_id%']; + protected $cacheKeys = ['app\wallet_settings_%wallet_id%']; protected $commandPrefix = 'scalpel'; protected $objectClass = \App\WalletSetting::class; protected $objectName = 'wallet-setting';