N98\Magento\Command\Config\SearchCommand::_searchConfigurationNodes PHP Метод

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

protected _searchConfigurationNodes ( string $searchString, array $nodes ) : array
$searchString string
$nodes array
Результат array
    protected function _searchConfigurationNodes($searchString, $nodes)
    {
        $matches = array();
        foreach ($nodes as $node) {
            $match = $this->_searchNode($searchString, $node);
            if ($match) {
                $matches[] = $match;
            }
        }
        return $matches;
    }