| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class AccessUrlRepository extends ResourceRepository |
||
| 15 | { |
||
| 16 | public function __construct(ManagerRegistry $registry) |
||
| 17 | { |
||
| 18 | parent::__construct($registry, AccessUrl::class); |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Select the first access_url ID in the list as a default setting for |
||
| 23 | * the creation of new users. |
||
| 24 | */ |
||
| 25 | public function getFirstId() |
||
| 32 | } |
||
| 33 | } |
||
| 34 |