Jamm\Memory\Tests\CommandsListCheck::getMethodParametersList PHP Метод

getMethodParametersList() защищенный Метод

protected getMethodParametersList ( ReflectionMethod $Method )
$Method ReflectionMethod
    protected function getMethodParametersList(\ReflectionMethod $Method)
    {
        /** @var \ReflectionParameter[] $Parameters */
        $Parameters = $Method->getParameters();
        $arr = [];
        foreach ($Parameters as $Parameter) {
            $arr[] = strtolower($Parameter->name);
        }
        return $arr;
    }