| 1 | <?php |
||
| 11 | class SemanticFormsSelect { |
||
|
|
|||
| 12 | |||
| 13 | /** |
||
| 14 | * @since 1.0 |
||
| 15 | */ |
||
| 16 | public static function initExtension() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @since 1.0 |
||
| 40 | */ |
||
| 41 | public static function onExtensionFunction() { |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @since 1.0 |
||
| 54 | * |
||
| 55 | * @return string|null |
||
| 56 | */ |
||
| 57 | public static function getVersion() { |
||
| 60 | |||
| 61 | } |
||
| 62 |
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.