Passed
Pull Request — master (#49)
by Michael
01:53
created

MyFixtures   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
use Doctrine\ORM\EntityManager,
4
    Doctrine\DBAL\Connection;
5
6
use MyApp\OmgException;
7
use MyApp\FatalException;
8
use \MyApp\DamnItException;
9
10
class MyFixtures
11
{
12
    /**
13
     * Inserts data into database.
14
     * @throws
15
     * @param Doctrine\ORM\EntityManager|\Something\ObjectManager $manager Entity Manager
16
     * @throws MyApp\OmgException
17
     * @throws \MyApp\FatalException
18
     * @throws MyApp\DamnItException
19
     */
20
    private function insertData($manager)
21
    {
22
        /** @var \Doctrine\ORM\EntityManager $manager */
23
        /** @var \Doctrine\DBAL\Connection $con */
24
        /**
25
         * @var MyApp\OmgException|\MyApp\FatalException|\MyApp\DamnItException|OmgException $e
26
         */
27
    }
28
}
29