F2m2\Apidocs\Commands\ApiDocsGenerator::viewPathForType PHP Метод

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

Returns the path for the view based upon View Type
protected viewPathForType ( $viewType ) : array
$viewType
Результат array
    protected function viewPathForType($viewType)
    {
        $docs = 'docs/';
        if ($viewType == 'docs') {
            $docs = '';
        }
        return base_path() . '/resources' . '/views/' . $viewType . '/' . $docs . $this->prefix . '/';
    }