Passed
Push — v3 ( 2b006a...43f239 )
by Andrew
33:34 queued 16:32
created

src/assetbundles/retour/RetourDashboardAsset.php (1 issue)

Checks class comment missing category tag

Coding Style Informational
1
<?php
2
/**
3
 * Retour plugin for Craft CMS 3.x
4
 *
5
 * Retour allows you to intelligently redirect legacy URLs, so that you don't
6
 * lose SEO value when rebuilding & restructuring a website
7
 *
8
 * @link      https://nystudio107.com/
9
 * @copyright Copyright (c) 2018 nystudio107
10
 */
11
12
namespace nystudio107\retour\assetbundles\retour;
13
14
use craft\web\AssetBundle;
15
use craft\web\assets\cp\CpAsset;
16
use craft\web\assets\vue\VueAsset;
17
18
/**
19
 * @author    nystudio107
20
 * @package   Retour
21
 * @since     3.0.0
22
 */
0 ignored issues
show
Missing @category tag in class comment
Loading history...
23
class RetourDashboardAsset extends AssetBundle
24
{
25
    // Public Methods
26
    // =========================================================================
27
28
    /**
29
     * @inheritdoc
30
     */
31
    public function init()
32
    {
33
        $this->sourcePath = '@nystudio107/retour/assetbundles/retour/dist';
34
        $this->depends = [
35
            CpAsset::class,
36
            VueAsset::class,
37
            RetourAsset::class,
38
        ];
39
40
        parent::init();
41
    }
42
}
43