| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Notify extends AbstractLibrary implements AlertInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @const The library name |
||
| 24 | */ |
||
| 25 | public const NAME = 'notify'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The js files |
||
| 29 | * |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | protected $aJsFiles = ['notify.min.js']; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritDoc |
||
| 36 | */ |
||
| 37 | public function getName(): string |
||
| 38 | { |
||
| 39 | return self::NAME; |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritDoc |
||
| 44 | */ |
||
| 45 | public function getUri(): string |
||
| 48 | } |
||
| 49 | } |
||
| 50 |