Issues (25)

src/Asset/AuthChoiceAsset.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\AuthClient\Asset;
6
7
use Yiisoft\Assets\AssetBundle;
8
use Yiisoft\Yii\JQuery\YiiAsset;
0 ignored issues
show
The type Yiisoft\Yii\JQuery\YiiAsset 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...
9
10
/**
11
 * AuthChoiceAsset is an asset bundle for {@see AuthChoice} widget.
12
 *
13
 * @see AuthChoiceStyleAsset
14
 */
15
class AuthChoiceAsset extends AssetBundle
16
{
17
    public ?string $sourcePath = __DIR__ . '../../resources/assets';
18
    public array $js = [
19
        'authchoice.js',
20
    ];
21
    public array $depends = [
22
        AuthChoiceStyleAsset::class,
23
        YiiAsset::class,
24
    ];
25
}
26