TemplateRepository   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getQueryListe() 0 6 1
1
<?php
2
3
namespace Starkerxp\CampaignBundle\Repository;
4
5
/**
6
 * TemplateRepository.
7
 *
8
 * This class was generated by the Doctrine ORM. Add your own custom
9
 * repository methods below.
10
 */
11
class TemplateRepository extends \Doctrine\ORM\EntityRepository
12
{
13
14
    public function getQueryListe()
15
    {
16
        $query = $this->createQueryBuilder('t');
17
18
        return $query;
19
    }
20
21
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
22