Issues (1)

src/Asset.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Yii 2 asset with RU-TLD logos and so on
4
 *
5
 * @link      https://github.com/ru-tld/yii2-asset-ru-tld
6
 * @package   yii2-asset-ru-tld
7
 * @license   No license
8
 * @copyright Copyright (c) 2015-2017, RU-TLD (https://ru-tld.ru/)
9
 */
10
11
12
namespace rutld\assets\rutld;
13
14
class Asset extends \yii\web\AssetBundle
0 ignored issues
show
The type yii\web\AssetBundle was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
{
16
    public $sourcePath = '@rutld/assets/rutld/assets';
17
18
    public $css = [
19
        'css/ru-tld.css',
20
    ];
21
}
22