63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
|
name: ScheduleInterruptCommand
|
||
|
class_comment: null
|
||
|
dependencies:
|
||
|
- name: Command
|
||
|
type: class
|
||
|
source: Illuminate\Console\Command
|
||
|
- name: Cache
|
||
|
type: class
|
||
|
source: Illuminate\Contracts\Cache\Repository
|
||
|
- name: Date
|
||
|
type: class
|
||
|
source: Illuminate\Support\Facades\Date
|
||
|
- name: AsCommand
|
||
|
type: class
|
||
|
source: Symfony\Component\Console\Attribute\AsCommand
|
||
|
properties:
|
||
|
- name: name
|
||
|
visibility: protected
|
||
|
comment: '# * The console command name.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @var string'
|
||
|
- name: description
|
||
|
visibility: protected
|
||
|
comment: '# * The console command description.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @var string'
|
||
|
- name: cache
|
||
|
visibility: protected
|
||
|
comment: '# * The cache store implementation.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @var \Illuminate\Contracts\Cache\Repository'
|
||
|
methods:
|
||
|
- name: __construct
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: cache
|
||
|
comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\
|
||
|
\ $name = 'schedule:interrupt';\n# \n# /**\n# * The console command description.\n\
|
||
|
# *\n# * @var string\n# */\n# protected $description = 'Interrupt the current\
|
||
|
\ schedule run';\n# \n# /**\n# * The cache store implementation.\n# *\n# * @var\
|
||
|
\ \\Illuminate\\Contracts\\Cache\\Repository\n# */\n# protected $cache;\n# \n\
|
||
|
# /**\n# * Create a new schedule interrupt command.\n# *\n# * @param \\Illuminate\\\
|
||
|
Contracts\\Cache\\Repository $cache\n# * @return void"
|
||
|
- name: handle
|
||
|
visibility: public
|
||
|
parameters: []
|
||
|
comment: '# * Execute the console command.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @return void'
|
||
|
traits:
|
||
|
- Illuminate\Console\Command
|
||
|
- Illuminate\Support\Facades\Date
|
||
|
- Symfony\Component\Console\Attribute\AsCommand
|
||
|
interfaces: []
|