You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it scans one level higher than defined. in configuration is defined as root "@app".
The path should i.e. /var/www/myapp but i get /var/www.
The Problem is line 204 in the following file:
it scans one level higher than defined. in configuration is defined as root "@app".
The path should i.e. /var/www/myapp but i get /var/www.
The Problem is line 204 in the following file:
/services/scanners/ScannerFile.php
wrong:
return dirname(Yii::getAlias($this->module->root));
correct:
return Yii::getAlias($this->module->root);
The text was updated successfully, but these errors were encountered: