| 1 | <?php |
||
| 20 | class NullNode extends AbstractNode implements SingletonInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var NullNode |
||
| 24 | */ |
||
| 25 | private static $instance; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return NullNode |
||
| 29 | */ |
||
| 30 | public static function get() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @inheritdoc |
||
| 41 | */ |
||
| 42 | public function getCssResult() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @inheritdoc |
||
| 49 | */ |
||
| 50 | public function getJavaScriptResult() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritdoc |
||
| 57 | */ |
||
| 58 | public function getPhpResult(PhpConditionDataObject $dataObject) |
||
| 62 | } |
||
| 63 |