| 1 | <?php |
||
| 14 | final class GitOutputEvent extends AbstractGitEvent |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $type; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $buffer; |
||
| 25 | |||
| 26 | public function __construct( |
||
| 37 | |||
| 38 | public function getType(): string |
||
| 42 | |||
| 43 | public function getBuffer(): string |
||
| 47 | |||
| 48 | public function isError(): bool |
||
| 52 | } |
||
| 53 |