think\console\output\Descriptor::getColumnWidth PHP Метод

getColumnWidth() приватный Метод

private getColumnWidth ( array $commands ) : integer
$commands array
Результат integer
    private function getColumnWidth(array $commands)
    {
        $width = 0;
        foreach ($commands as $command) {
            $width = strlen($command->getName()) > $width ? strlen($command->getName()) : $width;
        }
        return $width + 2;
    }