1 | <?php |
||
11 | class SemanticFormsSelect { |
||
|
|||
12 | |||
13 | /** |
||
14 | * @since 1.0 |
||
15 | */ |
||
16 | public static function initExtension() { |
||
40 | |||
41 | /** |
||
42 | * @since 1.0 |
||
43 | */ |
||
44 | public static function onExtensionFunction() { |
||
54 | |||
55 | /** |
||
56 | * @since 1.0 |
||
57 | * |
||
58 | * @param string $dependency |
||
59 | * |
||
60 | * @return string|null |
||
61 | */ |
||
62 | public static function getVersion( $dependency = null ) { |
||
74 | |||
75 | } |
||
76 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.