1 | <?php |
||
22 | class Literal implements ElementInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $literal; |
||
28 | |||
29 | /** |
||
30 | * @param $literal |
||
31 | */ |
||
32 | public function __construct($literal) |
||
36 | |||
37 | /** |
||
38 | * Gets the string representation of the element for usage inside patterns. |
||
39 | * |
||
40 | * @return mixed |
||
41 | */ |
||
42 | public function __toString() |
||
50 | } |
||
51 |