Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class ArticleRepository extends ServiceEntityRepository |
||
16 | { |
||
17 | public function __construct(ManagerRegistry $registry) |
||
18 | { |
||
19 | parent::__construct($registry, Article::class); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param string $artnum |
||
24 | * |
||
25 | * @return \App\Entity\Article|null |
||
26 | */ |
||
27 | public function findOneByArtnum(string $artnum): ?Article |
||
30 | } |
||
31 | |||
61 |