platform/api/laravel/Foundation/Console/EventClearCommand.yaml
2024-09-02 10:44:11 -07:00

63 lines
1.6 KiB
YAML

name: EventClearCommand
class_comment: null
dependencies:
- name: Command
type: class
source: Illuminate\Console\Command
- name: Filesystem
type: class
source: Illuminate\Filesystem\Filesystem
- 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: files
visibility: protected
comment: '# * The filesystem instance.
# *
# * @var \Illuminate\Filesystem\Filesystem'
methods:
- name: __construct
visibility: public
parameters:
- name: files
comment: "# * The console command name.\n# *\n# * @var string\n# */\n# protected\
\ $name = 'event:clear';\n# \n# /**\n# * The console command description.\n# *\n\
# * @var string\n# */\n# protected $description = 'Clear all cached events and\
\ listeners';\n# \n# /**\n# * The filesystem instance.\n# *\n# * @var \\Illuminate\\\
Filesystem\\Filesystem\n# */\n# protected $files;\n# \n# /**\n# * Create a new\
\ config clear command instance.\n# *\n# * @param \\Illuminate\\Filesystem\\\
Filesystem $files\n# * @return void"
- name: handle
visibility: public
parameters: []
comment: '# * Execute the console command.
# *
# * @return void
# *
# * @throws \RuntimeException'
traits:
- Illuminate\Console\Command
- Illuminate\Filesystem\Filesystem
- Symfony\Component\Console\Attribute\AsCommand
interfaces: []