Completed
Push — master ( 557727...adef2f )
by Beñat
13s
created

SqlFileSpecificationFactory   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

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\File\Infrastructure\Persistence\Sql;
14
15
use BenGorFile\File\Domain\Model\FileName;
16
use BenGorFile\File\Domain\Model\FileSpecificationFactory;
17
18
/**
19
 * @author Mikel Etxebarria <[email protected]>
20
 */
21
class SqlFileSpecificationFactory implements FileSpecificationFactory
22
{
23
    public function buildFilterByNameSpecification($fileName, $offset = 0, $limit = -1)
24
    {
25
        return new SqlFilterByNameSpecification($fileName, $offset, $limit);
26
    }
27
28
    public function buildByNameSpecification(FileName $fileName)
29
    {
30
        return new SqlByNameSpecification($fileName);
31
    }
32
}
33