Completed
Push — dev ( a1297d...02942d )
by Arnaud
03:36
created

TestManager   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 10
c 3
b 0
f 0
lcom 0
cbo 0
dl 0
loc 49
rs 10
1
<?php
2
3
namespace Test\TestBundle\Manager;
4
5
use Doctrine\Common\Persistence\ObjectRepository;
6
use Doctrine\ORM\EntityManager;
7
use Doctrine\ORM\EntityRepository;
8
use LAG\AdminBundle\Admin\ManagerInterface;
9
10
class TestManager implements ManagerInterface
11
{
12
    public function __construct(EntityManager $manager, ObjectRepository $repository)
13
    {
14
    }
15
16
    public function find($id)
17
    {
18
    }
19
20
    public function findAll()
21
    {
22
    }
23
24
    public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
25
    {
26
    }
27
28
    public function findOneBy(array $criteria)
29
    {
30
    }
31
32
    public function getClassName()
33
    {
34
    }
35
36
    public function create()
37
    {
38
        // TODO: Implement create() method.
39
    }
40
41
    public function delete($entity)
42
    {
43
        // TODO: Implement delete() method.
44
    }
45
46
    public function save($entity)
47
    {
48
        // TODO: Implement save() method.
49
    }
50
51
    /**
52
     * @return EntityRepository
53
     */
54
    public function getRepository()
55
    {
56
        // TODO: Implement getRepository() method.
57
    }
58
}
59