Tolerance\Bridge\JMSAopBundle\Operation\RunnerRepository::addRunner PHP Méthode

addRunner() private méthode

private addRunner ( string $className, string $method, Tolerance\Operation\Runner\OperationRunner $runner )
$className string
$method string
$runner Tolerance\Operation\Runner\OperationRunner
    private function addRunner($className, $method, OperationRunner $runner)
    {
        if (!array_key_exists($className, $this->runnerMappings)) {
            $this->runnerMappings[$className] = [];
        }
        $this->runnerMappings[$className][$method] = $runner;
    }