Blame view

vendor/rmrevin/yii2-fontawesome/CDNAssetBundle.php 431 Bytes
e9aa73b0   andryeyev   + adminLte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  /**
   * CDNAssetBundle.php
   * @author Revin Roman
   * @link https://rmrevin.ru
   */
  
  namespace rmrevin\yii\fontawesome;
  
  /**
   * Class CDNAssetBundle
   * @package rmrevin\yii\fontawesome
   * @deprecated
   */
  class CDNAssetBundle extends \rmrevin\yii\fontawesome\cdn\AssetBundle
  {
  
      public function init()
      {
          parent::init();
  
          \Yii::warning(sprintf('You are using an deprecated class `%s`.', __CLASS__));
      }
  }