| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | trait ActiveRecordTrait |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Creates QueryRelationManager query for ActiveRecord model which uses this trait |
||
| 16 | * @param string|null $alias table alias in select query |
||
| 17 | * @return QueryRelationManager new instance of manager |
||
| 18 | * @throws QueryRelationManagerException |
||
| 19 | */ |
||
| 20 | public static function select(?string $alias = null): QueryRelationManager |
||
| 25 |