Completed
Push — master ( 15a999...45ab4d )
by Beñat
03:02
created

DoctrineORMFileSpecificationFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 2
dl 0
loc 12
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A buildFilterByNameSpecification() 0 4 1
A buildByNameSpecification() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the BenGorFile package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace BenGorFile\DoctrineORMBridge\Infrastructure\Persistence;
14
15
use BenGorFile\File\Domain\Model\FileName;
16
use BenGorFile\File\Domain\Model\FileSpecificationFactory;
17
18
/**
19
 * @author Beñat Espiña <[email protected]>
20
 */
21
class DoctrineORMFileSpecificationFactory implements FileSpecificationFactory
22
{
23
    public function buildFilterByNameSpecification(FileName $fileName)
24
    {
25
        return new DoctrineORMFilterByNameSpecification($fileName);
26
    }
27
28
    public function buildByNameSpecification(FileName $fileName)
29
    {
30
        return new DoctrineORMByNameSpecification($fileName);
31
    }
32
}
33