| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 22 | public function __construct( |
|
| 37 | string $column, |
||
| 38 | $value, |
||
| 39 | int $bindingCounter = 0, |
||
| 40 | string $comparison = self::COMPARISON_EQUAL |
||
| 41 | ) { |
||
| 42 | 22 | $this->column = $column; |
|
| 43 | 22 | $this->value = $value; |
|
| 44 | 22 | $this->bindingNumber = $bindingCounter; |
|
| 45 | 22 | $this->comparison = ($value === null) ? self::COMPARISON_IS : $comparison; |
|
| 46 | 22 | } |
|
| 47 | |||
| 62 |