CacheTool\Command\OpcacheConfigurationCommand::processDirectives PHP Method

processDirectives() protected method

protected processDirectives ( array $directives )
$directives array
    protected function processDirectives(array $directives)
    {
        $list = array();
        foreach ($directives as $name => $value) {
            $list[] = array($name, var_export($value, true));
        }
        return $list;
    }
OpcacheConfigurationCommand