1 | <?php |
||
3 | class ChecIOShortcode extends Object |
||
|
|||
4 | { |
||
5 | /** |
||
6 | * ShortCode which adds a link to a chec.io buy now popup window |
||
7 | * @param array $arguments |
||
8 | * @param string $content |
||
9 | * @param ShortcodeParser $parser |
||
10 | * @param string $tagName |
||
11 | * @return string |
||
12 | */ |
||
13 | public static function BuyNowButton($arguments, $content = null, $parser = null, $tagName) |
||
31 | } |
||
32 |
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.