| 1 | <?php |
||
| 12 | final class RunApplicationCommand |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $source; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var bool |
||
| 21 | */ |
||
| 22 | private $isFixer; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var array |
||
| 26 | */ |
||
| 27 | private $jsonConfiguration = []; |
||
| 28 | |||
| 29 | public function __construct( |
||
| 38 | |||
| 39 | public function getSource() : array |
||
| 43 | |||
| 44 | public function getJsonConfiguration() : array |
||
| 48 | |||
| 49 | public function isFixer() : bool |
||
| 53 | } |
||
| 54 |