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