| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 41 | protected function advFormatSqlCondition(string $rule, string $sqlOp, string $conv) : string { |
||
| 42 | $condForRule = [ |
||
| 43 | 'stream_url' => "$conv(`stream_url`) $sqlOp $conv(?)", |
||
| 44 | ]; |
||
| 45 | |||
| 46 | return $condForRule[$rule] ?? parent::advFormatSqlCondition($rule, $sqlOp, $conv); |
||
| 47 | } |
||
| 49 |