1 | <?php |
||
10 | class Zookal_Mock_Helper_Data extends Mage_Core_Helper_Abstract |
||
|
|||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var Mage_Core_Model_Store |
||
15 | */ |
||
16 | protected $_store = null; |
||
17 | |||
18 | /** |
||
19 | * @var boolean |
||
20 | */ |
||
21 | private $_includePathSet = null; |
||
22 | |||
23 | /** |
||
24 | * @param Mage_Core_Model_Store $store |
||
25 | */ |
||
26 | public function __construct(Mage_Core_Model_Store $store = null) |
||
30 | |||
31 | /** |
||
32 | * @return Mage_Core_Model_Store |
||
33 | */ |
||
34 | public function getStore() |
||
41 | |||
42 | /** |
||
43 | * @return boolean |
||
44 | */ |
||
45 | public function isLogMethodEnabled() |
||
49 | |||
50 | /** |
||
51 | * Appends a new include path to the current existing one. |
||
52 | * Appending is for performance reasons mandatory |
||
53 | * |
||
54 | * @param array $customFakePath |
||
55 | * |
||
56 | * @return bool |
||
57 | */ |
||
58 | public function setMockPhpIncludePath(array $customFakePath = null) |
||
76 | |||
77 | /** |
||
78 | * @param array $customFakePath |
||
79 | * |
||
80 | * @return string |
||
81 | */ |
||
82 | protected function _getCustomFakePath(array $customFakePath = null) |
||
92 | } |
||
93 |
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.