HippoPHP\Hippo\HippoTextUI::_getAllStandardNames PHP Метод

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

private _getAllStandardNames ( ) : string[]
Результат string[]
    private function _getAllStandardNames()
    {
        $result = [];
        $ymlFiles = $this->fileSystem->getAllFiles($this->_getStandardsFolder(), '/\\.yml$/');
        foreach ($ymlFiles as $ymlFilePath) {
            $result[] = basename($ymlFilePath, '.yml');
        }
        return $result;
    }