class RunCommandMessage
@author Kevin Bond <kevinbond@gmail.com>
Hierarchy
- class \Symfony\Component\Console\Messenger\RunCommandMessage implements \Symfony\Component\Console\Messenger\Stringable
Expanded class hierarchy of RunCommandMessage
File
-
vendor/
symfony/ console/ Messenger/ RunCommandMessage.php, line 19
Namespace
Symfony\Component\Console\MessengerView source
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()
*/
public function __construct(string $input, bool $throwOnFailure = true, bool $catchExceptions = false) {
}
public function __toString() : string {
return $this->input;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
RunCommandMessage::__construct | public | function | |
RunCommandMessage::__toString | public | function |