Add AutoResetUserFlushes return type and comment

This commit is contained in:
Alkl58
2021-07-08 15:32:09 +02:00
parent 2b9e97d5b4
commit 79fe39b1a0

View File

@@ -35,11 +35,13 @@ class AutoResetUserFlushes extends Command
/**
* Execute the console command.
*
* @return int
* @return mixed
*/
public function handle()
{
// Updates own_flushes for each user
User::where('own_flushes', '<', '2')->update(['own_flushes' => '2']);
$this->comment('Automated Reset User Flushes Command Complete');
}
}