for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: mhaase
* Date: 25.07.2017
* Time: 18:21
*/
namespace HaaseIT\HCSF\Controller\Api\Shop\Item;
use Zend\ServiceManager\ServiceManager;
class Base extends \HaaseIT\HCSF\Controller\Api\Shop\Base
{
* @var array
protected $matches;
* Base constructor.
* @param ServiceManager $serviceManager
* @param $aPath
* @param $matches
public function __construct(ServiceManager $serviceManager, $aPath, array $matches)
$aPath
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->matches = $matches;
parent::__construct($serviceManager);
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.