1 | <?php |
||
5 | class PhpCsFixerResponse |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | private $phpCsFixer; |
||
11 | /** |
||
12 | * @var bool |
||
13 | */ |
||
14 | private $phpCsFixerPsr0; |
||
15 | /** |
||
16 | * @var bool |
||
17 | */ |
||
18 | private $phpCsFixerPsr1; |
||
19 | /** |
||
20 | * @var bool |
||
21 | */ |
||
22 | private $phpCsFixerPsr2; |
||
23 | /** |
||
24 | * @var bool |
||
25 | */ |
||
26 | private $phpCsFixerSymfony; |
||
27 | /** |
||
28 | * @var string|null |
||
29 | */ |
||
30 | private $phpCsFixerOptions; |
||
31 | |||
32 | /** |
||
33 | * PhpCsFixerResponse constructor. |
||
34 | * |
||
35 | * @param bool $phpCsFixer |
||
36 | * @param bool $phpCsFixerPsr0 |
||
37 | * @param bool $phpCsFixerPsr1 |
||
38 | * @param bool $phpCsFixerPsr2 |
||
39 | * @param bool $phpCsFixerSymfony |
||
40 | * @param string|null $phpCsFixerOptions |
||
41 | */ |
||
42 | 9 | public function __construct( |
|
57 | |||
58 | /** |
||
59 | * @return bool |
||
60 | */ |
||
61 | 2 | public function isPhpCsFixer() |
|
65 | |||
66 | /** |
||
67 | * @return bool |
||
68 | */ |
||
69 | 4 | public function isPhpCsFixerPsr0() |
|
73 | |||
74 | /** |
||
75 | * @return bool |
||
76 | */ |
||
77 | 4 | public function isPhpCsFixerPsr1() |
|
81 | |||
82 | /** |
||
83 | * @return bool |
||
84 | */ |
||
85 | 4 | public function isPhpCsFixerPsr2() |
|
89 | |||
90 | /** |
||
91 | * @return bool |
||
92 | */ |
||
93 | 4 | public function isPhpCsFixerSymfony() |
|
97 | |||
98 | /** |
||
99 | * @return null|string |
||
100 | */ |
||
101 | 1 | public function getPhpCsFixerOptions() |
|
105 | } |
||
106 |