Neos\Flow\Cli\Command::getCommandMethodReflection PHP Method

getCommandMethodReflection() protected method

protected getCommandMethodReflection ( ) : MethodReflection
return Neos\Flow\Reflection\MethodReflection
    protected function getCommandMethodReflection()
    {
        if ($this->commandMethodReflection === null) {
            $this->commandMethodReflection = new MethodReflection($this->controllerClassName, $this->controllerCommandName . 'Command');
        }
        return $this->commandMethodReflection;
    }