Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Expression implements ExpressionInterface { |
||
14 | |||
15 | use FactoryTrait; |
||
16 | |||
17 | /** |
||
18 | * @var DB |
||
19 | */ |
||
20 | protected $db; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $expression; |
||
26 | |||
27 | /** |
||
28 | * @param DB $db |
||
29 | * @param string $expression |
||
30 | */ |
||
31 | public function __construct (DB $db, string $expression) { |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function __toString () { |
||
43 |