| 1 | <?php |
||
| 3 | class LimeSoda_LiveGuard_Helper_Data extends Mage_Core_Helper_Abstract |
||
|
|
|||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Asserts that the system configuration value equals the environment |
||
| 7 | * configuration value specified in XML for the current enviroment. |
||
| 8 | * |
||
| 9 | * @throws Exception |
||
| 10 | * @param string $variable Variable name used in the environment configuration XML |
||
| 11 | * @param string $path System configuration path |
||
| 12 | * @param mixed $store Store (if you want to check for a specific store-view) |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function assertCurrEnvConfigEqualsSysConfig($variable, $path, $store = null) |
||
| 24 | } |
||
| 25 |
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.