| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class QueryContext extends AbstractContext |
||
| 8 | { |
||
| 9 | public function __construct(string $methodName, private string $rawSql, private string $category) |
||
| 12 | } |
||
| 13 | |||
| 14 | public function getRawSql(): string |
||
| 15 | { |
||
| 16 | return $this->rawSql; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getCategory(): string |
||
| 22 | } |
||
| 23 | } |
||
| 24 |