| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function __construct( |
||
| 34 | public string $table, |
||
| 35 | public string $column, |
||
| 36 | public string $joinColumn, |
||
| 37 | public Comparison $comparison, |
||
| 38 | public JoinOperator $operator, |
||
| 39 | ) { |
||
| 40 | parent::__construct( |
||
| 41 | table: $table, |
||
| 42 | column: $column, |
||
| 43 | joinColumn: $joinColumn, |
||
| 44 | comparison: $comparison, |
||
| 45 | operator: $operator, |
||
| 46 | type: JoinType::RIGHT, |
||
| 47 | ); |
||
| 50 |