Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class AndCondition extends Condition |
||
10 | 5 | { |
|
11 | protected $_condition; |
||
12 | 5 | protected $_andCondition; |
|
13 | 5 | ||
14 | 5 | public function __construct($condition, $andCondition) |
|
15 | { |
||
16 | 5 | $this->_condition = $condition; |
|
17 | $this->_andCondition = $andCondition; |
||
18 | 5 | } |
|
19 | |||
20 | public function getString() |
||
23 | } |
||
24 | } |
||
25 |