Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | class UserExtraBettingRepository extends ServiceEntityRepository |
||
19 | { |
||
20 | public function __construct(RegistryInterface $registry) |
||
21 | { |
||
22 | parent::__construct($registry, UserExtraBetting::class); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param UserInterface $user |
||
27 | * @return UserExtraBetting[] |
||
28 | */ |
||
29 | public function getByUser(UserInterface $user) |
||
32 | } |
||
33 | } |
||
34 |