platform/api/symfony/Component/Console/Messenger/RunCommandMessage.yaml
2024-09-02 10:44:11 -07:00

38 lines
919 B
YAML

name: RunCommandMessage
class_comment: '# * @author Kevin Bond <kevinbond@gmail.com>'
dependencies:
- name: RunCommandFailedException
type: class
source: Symfony\Component\Console\Exception\RunCommandFailedException
properties: []
methods:
- name: __construct
visibility: public
parameters:
- name: input
- name: throwOnFailure
default: 'true'
- name: catchExceptions
default: 'false'
comment: '# * @author Kevin Bond <kevinbond@gmail.com>
# */
# class RunCommandMessage implements \Stringable
# {
# /**
# * @param bool $throwOnFailure If the command has a non-zero exit code, throw
{@see RunCommandFailedException}
# * @param bool $catchExceptions @see Application::setCatchExceptions()'
- name: __toString
visibility: public
parameters: []
comment: null
traits:
- Symfony\Component\Console\Exception\RunCommandFailedException
interfaces:
- \Stringable