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

SqlByNameSpecification::buildQuery()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
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
17
/**
18
 * @author Mikel Etxebarria <[email protected]>
19
 */
20
class SqlByNameSpecification implements SqlQuerySpecification
21
{
22
    private $name;
23
24
    public function __construct(FileName $aName)
25
    {
26
        $this->name = $aName;
27
    }
28
29
    public function buildQuery()
30
    {
31
        $query = 'SELECT * FROM file f WHERE f.name = :name AND f.extension = :extension';
32
        $parameters = [":name" => $this->name->name(), ":extension" => $this->name->extension()];
33
34
        return [$query, $parameters];
35
    }
36
}
37