php在代码的注释里申明变量类型。
/* @var $searchModel common\models\product\search\ProductArchiveSearch */
或者:
/* @var $searchModel \common\models\product\search\ProductArchiveSearch */
php在代码里给类增加方法注释。
/** * @method int sum(string $table, string $field, array $conditions = []) * @method int min(string $table, string $field, array $conditions = []) * @method int max(string $table, string $field, array $conditions = []) * @method float avg(string $table, string $field, array $conditions = []) */ class MySQL {......}