| 1 | <?php |
||
| 5 | class Context |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var bool |
||
| 9 | */ |
||
| 10 | private $ignoreIllegal = false; |
||
| 11 | /** |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | private $ignoreMissing = false; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return bool |
||
| 18 | */ |
||
| 19 | 1 | public function shouldIgnoreIllegal() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param bool $ignoreIllegal |
||
| 26 | * @return $this |
||
| 27 | */ |
||
| 28 | 17 | public function setIgnoreIllegal($ignoreIllegal) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | 3 | public function shouldIgnoreMissing() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @param bool $ignoreMissing |
||
| 44 | * @return $this |
||
| 45 | */ |
||
| 46 | 17 | public function setIgnoreMissing($ignoreMissing) |
|
| 51 | } |
||
| 52 |