| 1 | <?php |
||
| 22 | class NullNode extends AbstractNode implements SingletonInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var NullNode |
||
| 26 | */ |
||
| 27 | private static $instance; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return NullNode |
||
| 31 | */ |
||
| 32 | public static function get() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritdoc |
||
| 43 | */ |
||
| 44 | public function getCssResult() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @inheritdoc |
||
| 51 | */ |
||
| 52 | public function getJavaScriptResult() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @inheritdoc |
||
| 59 | */ |
||
| 60 | public function getPhpResult() |
||
| 64 | } |
||
| 65 |