1 | <?php |
||
5 | class PhpCsResponse |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | private $phpCs; |
||
11 | /** |
||
12 | * @var null|string |
||
13 | */ |
||
14 | private $phpCsStandard; |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $ignore; |
||
19 | |||
20 | /** |
||
21 | * PhpCsResponse constructor. |
||
22 | 9 | * |
|
23 | * @param bool $phpCs |
||
24 | 9 | * @param string|null $phpCsStandard |
|
25 | 9 | * @param string $ignore |
|
26 | 9 | */ |
|
27 | public function __construct($phpCs, $phpCsStandard, $ignore) |
||
33 | 2 | ||
34 | /** |
||
35 | * @return bool |
||
36 | */ |
||
37 | public function isPhpCs() |
||
41 | 2 | ||
42 | /** |
||
43 | * @return null|string |
||
44 | */ |
||
45 | public function getPhpCsStandard() |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getIgnore() |
||
57 | } |
||
58 |