Completed
Push — master ( 41575c...8e6477 )
by Tim
14s
created

UrlRewriteRepository::findAllBySku()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 4

Duplication

Lines 10
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 10
loc 10
ccs 0
cts 6
cp 0
rs 9.4285
cc 1
eloc 4
nc 1
nop 1
crap 2
1
<?php
2
3
/**
4
 * TechDivision\Import\Repositories\UrlRewriteRepository
5
 *
6
 * NOTICE OF LICENSE
7
 *
8
 * This source file is subject to the Open Software License (OSL 3.0)
9
 * that is available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * PHP version 5
13
 *
14
 * @author    Tim Wagner <[email protected]>
15
 * @copyright 2016 TechDivision GmbH <[email protected]>
16
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
 * @link      https://github.com/techdivision/import-product
18
 * @link      http://www.techdivision.com
19
 */
20
21
namespace TechDivision\Import\Product\Repositories;
22
23
use TechDivision\Import\Product\Utils\MemberNames;
24
25
/**
26
 * Repository implementation to load URL rewrite data.
27
 *
28
 * @author    Tim Wagner <[email protected]>
29
 * @copyright 2016 TechDivision GmbH <[email protected]>
30
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
31
 * @link      https://github.com/techdivision/import-product
32
 * @link      http://www.techdivision.com
33
 */
34 View Code Duplication
class UrlRewriteRepository extends \TechDivision\Import\Repositories\UrlRewriteRepository
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
35
{
36
37
    /**
38
     * The prepared statement to load the existing URL rewrites by a SKU.
39
     *
40
     * @var \PDOStatement
41
     */
42
    protected $urlRewritesBySkuStmt;
43
44
    /**
45
     * Initializes the repository's prepared statements.
46
     *
47
     * @return void
48
     */
49
    public function init()
50
    {
51
52
        // invoke the parent instance
53
        parent::init();
54
55
        // load the utility class name
56
        $utilityClassName = $this->getUtilityClassName();
57
58
        // initialize the prepared statements
59
        $this->urlRewritesBySkuStmt = $this->getConnection()->prepare($this->getUtilityClass()->find($utilityClassName::URL_REWRITES_BY_SKU));
60
    }
61
62
    /**
63
     * Return's an array with the URL rewrites for the passed SKU.
64
     *
65
     * @param string $sku The SKU to load the URL rewrites for
66
     *
67
     * @return array The URL rewrites
68
     */
69
    public function findAllBySku($sku)
70
    {
71
72
        // initialize the params
73
        $params = array(MemberNames::SKU => $sku);
74
75
        // load and return the URL rewrites for the passed SKU
76
        $this->urlRewritesBySkuStmt->execute($params);
77
        return $this->urlRewritesBySkuStmt->fetchAll(\PDO::FETCH_ASSOC);
78
    }
79
}
80