Pop\Code\Generator\DocblockGenerator::getParamLength PHP Метод

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

Get the longest param type length
protected getParamLength ( ) : integer
Результат integer
    protected function getParamLength()
    {
        $length = 0;
        foreach ($this->tags['param'] as $param) {
            if (strlen($param['type']) > $length) {
                $length = strlen($param['type']);
            }
        }
        return $length;
    }