1 | <?php |
||
32 | class CacheKeys extends \TechDivision\Import\Utils\CacheKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * The cache key for products. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | const PRODUCT = 'product'; |
||
41 | |||
42 | /** |
||
43 | * The cache key for product varchar attributes. |
||
44 | * |
||
45 | * @var string |
||
46 | */ |
||
47 | const PRODUCT_VARCHAR = 'product_varchar'; |
||
48 | |||
49 | /** |
||
50 | * The cache key for product integer attributes. |
||
51 | * |
||
52 | * @var string |
||
53 | */ |
||
54 | const PRODUCT_INT = 'product_int'; |
||
55 | |||
56 | /** |
||
57 | * The cache key for product datetime attribute. |
||
58 | * |
||
59 | * @var string |
||
60 | */ |
||
61 | const PRODUCT_DATETIME = 'product_datetime'; |
||
62 | |||
63 | /** |
||
64 | * The cache key for product decimal attribute. |
||
65 | * |
||
66 | * @var string |
||
67 | */ |
||
68 | const PRODUCT_DECIMAL = 'product_decimal'; |
||
69 | |||
70 | /** |
||
71 | * The cache key for product text attribute. |
||
72 | * |
||
73 | * @var string |
||
74 | */ |
||
75 | const PRODUCT_TEXT = 'product_text'; |
||
76 | |||
77 | /** |
||
78 | * Initializes the instance with the passed cache key. |
||
79 | * |
||
80 | * @param string $cacheKey The cache key use |
||
81 | */ |
||
82 | public function __construct($cacheKey, array $cacheKeys = array()) |
||
101 | } |
||
102 |
This check looks for access to methods that are not accessible from the current context.
If you need to make a method accessible to another context you can raise its visibility level in the defining class.