Cosmetics

This commit is contained in:
Nabeel Shahzad
2018-08-20 09:48:39 -05:00
parent 89baf34824
commit 66a9b361cb
3 changed files with 8 additions and 7 deletions

View File

@@ -12,10 +12,13 @@ use App\Cron\Nightly\PilotLeave;
use App\Cron\Nightly\RecalculateBalances;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
/**
* All of the hooks for the cron jobs
* @package App\Providers
*/
class CronServiceProvider extends ServiceProvider
{
protected $listen = [
# Cron hooks
CronNightly::class => [
ApplyExpenses::class,
RecalculateBalances::class,
@@ -31,6 +34,4 @@ class CronServiceProvider extends ServiceProvider
\App\Cron\Monthly\ApplyExpenses::class
],
];
protected $subscribe = [];
}