Bluz\Controller\Mapper\AbstractMapper::addMap PHP Method

addMap() public method

Add mapping data
public addMap ( string $method, string $module, string $controller, String $acl = null )
$method string
$module string
$controller string
$acl String
    public function addMap($method, $module, $controller, $acl = null)
    {
        $this->map[strtoupper($method)] = ['module' => $module, 'controller' => $controller, 'acl' => $acl];
    }