- Patch #1371484 by makara: private properties in abstract class DrupalCacheArray.

8.0.x
Dries 2011-12-19 09:37:02 -05:00
parent 832c2864da
commit 7be846e75d
3 changed files with 4 additions and 5 deletions

View File

@ -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);
} }

View File

@ -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.

View File

@ -16,7 +16,7 @@
* \@see user_pass_validate(). * \@see user_pass_validate().
* \@see user_pass_submit(). * \@see user_pass_submit().
* *
* @} End of "defgroup forms". * @}
*/ */
/** /**