Passed
Push — master ( de9eb0...f0818c )
by Dev
05:42
created

MediaRepository::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace PiedWeb\CMSBundle\Repository;
4
5
use PiedWeb\CMSBundle\Entity\Media;
6
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
7
use Symfony\Bridge\Doctrine\RegistryInterface;
8
9
/**
10
 * @method Media|null find($id, $lockMode = null, $lockVersion = null)
11
 * @method Media|null findOneBy(array $criteria, array $orderBy = null)
12
 * @method Media[]    findAll()
13
 * @method Media[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
14
 */
15
class MediaRepository extends ServiceEntityRepository
16
{
17
18
}
19