| 1 | <?php |
||
| 21 | class EmptyConditionTree extends ConditionTree implements SingletonInterface |
||
| 22 | { |
||
| 23 | use SelfInstantiateTrait; |
||
| 24 | |||
| 25 | public function __construct() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function getCssConditions() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return array |
||
| 40 | */ |
||
| 41 | public function getJavaScriptConditions() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param PhpConditionDataObject $dataObject |
||
| 48 | * @return bool |
||
| 49 | */ |
||
| 50 | public function getPhpResult(PhpConditionDataObject $dataObject) |
||
| 54 | } |
||
| 55 |