1 | <?php |
||
5 | class PhpMdResponse |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | private $phpMd; |
||
11 | /** |
||
12 | * @var null|string |
||
13 | */ |
||
14 | private $phpMdOptions; |
||
15 | |||
16 | /** |
||
17 | * PhpMdResponse constructor. |
||
18 | * |
||
19 | * @param bool $phpMd |
||
20 | * @param string|null $phpMdOptions |
||
21 | */ |
||
22 | 9 | public function __construct($phpMd, $phpMdOptions) |
|
27 | |||
28 | /** |
||
29 | * @return bool |
||
30 | */ |
||
31 | 2 | public function isPhpMd() |
|
35 | |||
36 | /** |
||
37 | * @return null|string |
||
38 | */ |
||
39 | 1 | public function getPhpMdOptions() |
|
43 | } |
||
44 |