Completed
Push — master ( 06707c...0359c5 )
by Marcus
04:05
created

Base::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 3
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: mhaase
5
 * Date: 25.07.2017
6
 * Time: 18:21
7
 */
8
9
namespace HaaseIT\HCSF\Controller\Api\Shop\Item;
10
11
12
use Zend\ServiceManager\ServiceManager;
13
14
class Base extends \HaaseIT\HCSF\Controller\Api\Shop\Base
15
{
16
    /**
17
     * @var array
18
     */
19
    protected $matches;
20
21
    /**
22
     * Base constructor.
23
     * @param ServiceManager $serviceManager
24
     * @param $aPath
25
     * @param $matches
26
     */
27
    public function __construct(ServiceManager $serviceManager, $aPath, array $matches)
0 ignored issues
show
Unused Code introduced by
The parameter $aPath is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
28
    {
29
        $this->matches = $matches;
30
        parent::__construct($serviceManager);
31
    }
32
}
33