api/laravel/Console/Scheduling/ScheduleFinishCommand.yaml

58 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2024-09-26 09:03:21 +00:00
name: ScheduleFinishCommand
class_comment: null
dependencies:
- name: Command
type: class
source: Illuminate\Console\Command
- name: ScheduledBackgroundTaskFinished
type: class
source: Illuminate\Console\Events\ScheduledBackgroundTaskFinished
- name: Dispatcher
type: class
source: Illuminate\Contracts\Events\Dispatcher
- name: AsCommand
type: class
source: Symfony\Component\Console\Attribute\AsCommand
properties:
- name: signature
visibility: protected
comment: '# * The console command name.
# *
# * @var string'
- name: description
visibility: protected
comment: '# * The console command description.
# *
# * @var string'
- name: hidden
visibility: protected
comment: '# * Indicates whether the command should be shown in the Artisan command
list.
# *
# * @var bool'
methods:
- name: handle
visibility: public
parameters:
- name: schedule
comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\
\ $signature = 'schedule:finish {id} {code=0}';\n# \n# /**\n# * The console command\
\ description.\n# *\n# * @var string\n# */\n# protected $description = 'Handle\
\ the completion of a scheduled command';\n# \n# /**\n# * Indicates whether the\
\ command should be shown in the Artisan command list.\n# *\n# * @var bool\n#\
\ */\n# protected $hidden = true;\n# \n# /**\n# * Execute the console command.\n\
# *\n# * @param \\Illuminate\\Console\\Scheduling\\Schedule $schedule\n# * @return\
\ void"
traits:
- Illuminate\Console\Command
- Illuminate\Console\Events\ScheduledBackgroundTaskFinished
- Illuminate\Contracts\Events\Dispatcher
- Symfony\Component\Console\Attribute\AsCommand
interfaces: []