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