Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class Bootbox extends AbstractLibrary implements ModalInterface, AlertInterface, ConfirmInterface |
||
23 | { |
||
24 | /** |
||
25 | * @const The library name |
||
26 | */ |
||
27 | const NAME = 'bootbox'; |
||
28 | |||
29 | /** |
||
30 | * The js files |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $aJsFiles = ['bootbox.min.js']; |
||
35 | |||
36 | /** |
||
37 | * @inheritDoc |
||
38 | */ |
||
39 | public function getName(): string |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @inheritDoc |
||
46 | */ |
||
47 | public function getUri(): string |
||
52 |