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