Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Expression implements ExpressionInterface { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $string; |
||
11 | |||
12 | /** |
||
13 | * @param string $string |
||
14 | */ |
||
15 | public function __construct (string $string) { |
||
16 | $this->string = $string; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function __toString () { |
||
24 | } |
||
25 | } |