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 | /** |
||
29 | * PhpCsFixerResponse constructor. |
||
30 | * |
||
31 | * @param bool $phpCsFixer |
||
32 | * @param bool $phpCsFixerPsr0 |
||
33 | * @param bool $phpCsFixerPsr1 |
||
34 | * @param bool $phpCsFixerPsr2 |
||
35 | * @param bool $phpCsFixerSymfony |
||
36 | */ |
||
37 | 10 | public function __construct( |
|
50 | |||
51 | /** |
||
52 | * @return bool |
||
53 | */ |
||
54 | 2 | public function isPhpCsFixer() |
|
58 | |||
59 | /** |
||
60 | * @return bool |
||
61 | */ |
||
62 | 5 | public function isPhpCsFixerPsr0() |
|
66 | |||
67 | /** |
||
68 | * @return bool |
||
69 | */ |
||
70 | 5 | public function isPhpCsFixerPsr1() |
|
74 | |||
75 | /** |
||
76 | * @return bool |
||
77 | */ |
||
78 | 5 | public function isPhpCsFixerPsr2() |
|
82 | |||
83 | /** |
||
84 | * @return bool |
||
85 | */ |
||
86 | 5 | public function isPhpCsFixerSymfony() |
|
90 | } |
||
91 |