| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class CGroupInfoRepository extends ResourceRepository |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return CGroupInfo |
||
| 16 | */ |
||
| 17 | public function createGroup() |
||
| 18 | { |
||
| 19 | return $this->create(); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $code |
||
| 24 | * |
||
| 25 | * @return mixed |
||
| 26 | */ |
||
| 27 | public function findOneByCode($code) |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $name |
||
| 34 | * |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | public function findOneByTitle($name) |
||
| 42 |