Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 4 | public function compileParentKeyOfFirstPathSegment(string $pathColumn, string $parentKeyColumn, Builder $parentKeyQuery): string |
|
32 | { |
||
33 | 4 | $column = $this->wrap($pathColumn); |
|
34 | 4 | $parentKeyColumn = $this->wrap($parentKeyColumn); |
|
35 | 4 | $sql = $parentKeyQuery->toSql(); |
|
36 | |||
37 | 4 | return "if(instr($column, ?) = 0, $parentKeyColumn, ($sql))"; |
|
38 | } |
||
40 |