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 | /** |
||
17 | * PhpCsResponse constructor. |
||
18 | * |
||
19 | * @param bool $phpCs |
||
20 | * @param string|null $phpCsStandard |
||
21 | */ |
||
22 | 10 | public function __construct($phpCs, $phpCsStandard) |
|
27 | |||
28 | /** |
||
29 | * @return bool |
||
30 | */ |
||
31 | 2 | public function isPhpCs() |
|
35 | |||
36 | /** |
||
37 | * @return null|string |
||
38 | */ |
||
39 | 2 | public function getPhpCsStandard() |
|
43 | } |
||
44 |