123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Symfony\Component\Console\Messenger;
- use Symfony\Component\Console\Exception\RunCommandFailedException;
- class RunCommandMessage implements \Stringable
- {
-
- public function __construct(
- public readonly string $input,
- public readonly bool $throwOnFailure = true,
- public readonly bool $catchExceptions = false,
- ) {
- }
- public function __toString(): string
- {
- return $this->input;
- }
- }
|