1 | <?php |
||
10 | final class RunApplicationCommand |
||
11 | { |
||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | private $source; |
||
16 | |||
17 | /** |
||
18 | * @var bool |
||
19 | */ |
||
20 | private $isFixer; |
||
21 | |||
22 | /** |
||
23 | * @var array |
||
24 | */ |
||
25 | private $jsonConfiguration = []; |
||
26 | |||
27 | public function __construct( |
||
36 | |||
37 | public function getSource() : array |
||
41 | |||
42 | public function getJsonConfiguration() : array |
||
46 | |||
47 | public function isFixer() : bool |
||
51 | } |
||
52 |