Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class Tingle extends AbstractLibrary implements ModalInterface |
||
21 | { |
||
22 | /** |
||
23 | * @const The library name |
||
24 | */ |
||
25 | const NAME = 'tingle'; |
||
26 | |||
27 | /** |
||
28 | * The css files |
||
29 | * |
||
30 | * @var array |
||
31 | */ |
||
32 | protected $aCssFiles = ['tingle.min.css']; |
||
33 | |||
34 | /** |
||
35 | * The js files |
||
36 | * |
||
37 | * @var array |
||
38 | */ |
||
39 | protected $aJsFiles = ['tingle.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 |