- Patch #1371484 by makara: private properties in abstract class DrupalCacheArray.
parent
832c2864da
commit
7be846e75d
|
@ -22,7 +22,7 @@
|
||||||
* - $a1, $a2: Optional additional information, which can be passed into
|
* - $a1, $a2: Optional additional information, which can be passed into
|
||||||
* actions_do() and will be passed along to the action function.
|
* actions_do() and will be passed along to the action function.
|
||||||
*
|
*
|
||||||
* @} End of "defgroup actions".
|
* @}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -386,4 +386,3 @@ function actions_delete($aid) {
|
||||||
->execute();
|
->execute();
|
||||||
module_invoke_all('actions_delete', $aid);
|
module_invoke_all('actions_delete', $aid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -296,12 +296,12 @@ abstract class DrupalCacheArray implements ArrayAccess {
|
||||||
/**
|
/**
|
||||||
* A cid to pass to cache()->set() and cache()->get().
|
* A cid to pass to cache()->set() and cache()->get().
|
||||||
*/
|
*/
|
||||||
private $cid;
|
protected $cid;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A bin to pass to cache()->set() and cache()->get().
|
* A bin to pass to cache()->set() and cache()->get().
|
||||||
*/
|
*/
|
||||||
private $bin;
|
protected $bin;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array of keys to add to the cache at the end of the request.
|
* An array of keys to add to the cache at the end of the request.
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* \@see user_pass_validate().
|
* \@see user_pass_validate().
|
||||||
* \@see user_pass_submit().
|
* \@see user_pass_submit().
|
||||||
*
|
*
|
||||||
* @} End of "defgroup forms".
|
* @}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue