| 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 | */ |
|
| 26 | 9 | public function __construct($phpCs, $phpCsStandard, $ignore) |
|
| 32 | |||
| 33 | 2 | /** |
|
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | public function isPhpCs() |
||
| 40 | |||
| 41 | 2 | /** |
|
| 42 | * @return null|string |
||
| 43 | */ |
||
| 44 | public function getPhpCsStandard() |
||
| 48 | |||
| 49 | public function getIgnore() |
||
| 53 | } |
||
| 54 |