src/Submarine/RedirectsBundle/SubmarineRedirectsBundle.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Submarine\RedirectsBundle;
  3. use Submarine\CoreBundle\Bundles\AbstractSubmarineBundle;
  4. class SubmarineRedirectsBundle extends AbstractSubmarineBundle
  5. {
  6.     /**
  7.      * @inheritdoc
  8.      */
  9.     public function getAliasName()
  10.     {
  11.         return 'submarine_redirects';
  12.     }
  13.     /**
  14.      * @inheritdoc
  15.      */
  16.     public function getVersion()
  17.     {
  18.         return '1.5.1';
  19.     }
  20.     /**
  21.      * @inheritdoc
  22.      */
  23.     public function getRoute()
  24.     {
  25.         return 'submarine_redirects_home';
  26.     }
  27.     /**
  28.      * @inheritdoc
  29.      */
  30.     public function getIconClass()
  31.     {
  32.         return 'glyphicon-retweet';
  33.     }
  34. }