Test Failed
Branch master (e769ca)
by Stone
05:52
created

CategoryRepository::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace App\Repository;
4
5
use App\Entity\Category;
6
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
7
use Symfony\Bridge\Doctrine\RegistryInterface;
8
9
/**
10
 * @method Category|null find($id, $lockMode = null, $lockVersion = null)
11
 * @method Category|null findOneBy(array $criteria, array $orderBy = null)
12
 * @method Category[]    findAll()
13
 * @method Category[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
14
 */
15
class CategoryRepository extends ServiceEntityRepository
16
{
17
    public function __construct(RegistryInterface $registry)
18
    {
19
        parent::__construct($registry, Category::class);
20
    }
21
22
    // /**
23
    //  * @return Category[] Returns an array of Category objects
24
    //  */
25
    /*
26
    public function findByExampleField($value)
27
    {
28
        return $this->createQueryBuilder('c')
29
            ->andWhere('c.exampleField = :val')
30
            ->setParameter('val', $value)
31
            ->orderBy('c.id', 'ASC')
32
            ->setMaxResults(10)
33
            ->getQuery()
34
            ->getResult()
35
        ;
36
    }
37
    */
38
39
    /*
40
    public function findOneBySomeField($value): ?Category
41
    {
42
        return $this->createQueryBuilder('c')
43
            ->andWhere('c.exampleField = :val')
44
            ->setParameter('val', $value)
45
            ->getQuery()
46
            ->getOneOrNullResult()
47
        ;
48
    }
49
    */
50
}
51