@ -129,11 +129,7 @@ class RenderController extends Controller
return null;
},
'only' => ['.php'],
'except' => array_merge($except, [
'except' => $except,
'/views/',
'/requirements/',
'/gii/generators/',
]),
];
return FileHelper::findFiles($path, $options);
}
@ -13,6 +13,7 @@ use yii\apidoc\models\TypeDoc;
use yii\apidoc\templates\BaseRenderer;
/**
* A Markdown helper with support for class reference links.
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
@ -12,6 +12,7 @@ use phpDocumentor\Reflection\DocBlock\Tag\SinceTag;
use yii\base\Object;
* Base class for API documentation information.
@ -8,6 +8,7 @@
namespace yii\apidoc\models;
* Represents API documentation information for a `class`.
* Represents API documentation information for a `constant`.
@ -11,6 +11,7 @@ use phpDocumentor\Reflection\DocBlock\Tag\ParamTag;
use phpDocumentor\Reflection\DocBlock\Tag\ReturnTag;
* Represents API documentation information for an `event`.
@ -14,6 +14,7 @@ use phpDocumentor\Reflection\DocBlock\Tag\ThrowsTag;
use yii\base\Exception;
* Represents API documentation information for a `function`.
* Represents API documentation information for an `interface`.
* Represents API documentation information for a `method`.
@ -11,6 +11,7 @@ use yii\apidoc\helpers\PrettyPrinter;
* Represents API documentation information for a [[FunctionDoc|function]] or [[MethodDoc|method]] `param`.
@ -11,6 +11,7 @@ use phpDocumentor\Reflection\DocBlock\Tag\VarTag;
use yii\apidoc\helpers\PrettyPrinter;
* Represents API documentation information for a `property`.
* Represents API documentation information for a `trait`.
@ -12,6 +12,7 @@ use yii\base\Exception;
use yii\helpers\StringHelper;
* Base class for API documentation information for classes, interfaces and traits.