Passed
Push — master ( cf75f9...66ca98 )
by Julito
09:35
created

CCourseSettingRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
namespace Chamilo\CourseBundle\Repository;
5
6
use Chamilo\CourseBundle\Entity\CCourseSetting;
7
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
8
use Doctrine\Common\Persistence\ManagerRegistry;
9
10
/**
11
 * Class CCourseSettingRepository.
12
 */
13
class CCourseSettingRepository extends ServiceEntityRepository
14
{
15
    /**
16
     * CCourseSettingRepository constructor.
17
     *
18
     * @param ManagerRegistry $registry
19
     */
20
    public function __construct(ManagerRegistry $registry)
21
    {
22
        parent::__construct($registry, CCourseSetting::class);
23
    }
24
}
25