platform/api/laravel/Console/Events/CommandStarting.yaml

51 lines
1.6 KiB
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: CommandStarting
class_comment: null
dependencies:
- name: InputInterface
type: class
source: Symfony\Component\Console\Input\InputInterface
- name: OutputInterface
type: class
source: Symfony\Component\Console\Output\OutputInterface
properties:
- name: command
visibility: public
comment: '# * The command name.
# *
# * @var string'
- name: input
visibility: public
comment: '# * The console input implementation.
# *
# * @var \Symfony\Component\Console\Input\InputInterface|null'
- name: output
visibility: public
comment: '# * The command output implementation.
# *
# * @var \Symfony\Component\Console\Output\OutputInterface|null'
methods:
- name: __construct
visibility: public
parameters:
- name: command
- name: input
- name: output
comment: "# * The command name.\n# *\n# * @var string\n# */\n# public $command;\n\
# \n# /**\n# * The console input implementation.\n# *\n# * @var \\Symfony\\Component\\\
Console\\Input\\InputInterface|null\n# */\n# public $input;\n# \n# /**\n# * The\
\ command output implementation.\n# *\n# * @var \\Symfony\\Component\\Console\\\
Output\\OutputInterface|null\n# */\n# public $output;\n# \n# /**\n# * Create a\
\ new event instance.\n# *\n# * @param string $command\n# * @param \\Symfony\\\
Component\\Console\\Input\\InputInterface $input\n# * @param \\Symfony\\Component\\\
Console\\Output\\OutputInterface $output\n# * @return void"
traits:
- Symfony\Component\Console\Input\InputInterface
- Symfony\Component\Console\Output\OutputInterface
interfaces: []