Pipe\DirectiveProcessor::getDirectives PHP Метод

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

protected getDirectives ( )
    protected function getDirectives()
    {
        if (null === $this->parsedDirectives) {
            $this->parsedDirectives = array();
            foreach (explode("\n", $this->header) as $i => $line) {
                if (preg_match(static::DIRECTIVE_PATTERN, $line, $matches)) {
                    $argv = Shellwords::split($matches[1]);
                    $name = array_shift($argv);
                    $this->parsedDirectives[$i] = array($i, $name, $argv);
                }
            }
        }
        return $this->parsedDirectives;
    }