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