Merge branch 'MDL-45618' of git://github.com/timhunt/moodle

This commit is contained in:
Damyon Wiese 2014-05-20 14:59:48 +08:00
commit 4e8a350c35
110 changed files with 191 additions and 191 deletions

View file

@ -205,7 +205,7 @@ class cache_definition {
/**
* Gets set to true if this definition requires searchable stores.
* @since 2.4.4
* @since Moodle 2.4.4
* @var bool
*/
protected $requiresearchable = false;
@ -734,7 +734,7 @@ class cache_definition {
/**
* Returns true if this definition requires a searchable cache.
* @since 2.4.4
* @since Moodle 2.4.4
* @return bool
*/
public function require_searchable() {

View file

@ -309,7 +309,7 @@ class cache_factory {
/**
* Returns the cache instances that have been used within this request.
* @since 2.6
* @since Moodle 2.6
* @return array
*/
public function get_caches_in_use() {

View file

@ -344,7 +344,7 @@ interface cache_is_key_aware {
* Cache stores can choose to implement this interface.
* In order for a store to be usable as a session cache it must implement this interface.
*
* @since 2.4.4
* @since Moodle 2.4.4
*/
interface cache_is_searchable {
/**

View file

@ -892,7 +892,7 @@ class cache implements cache_loader {
/**
* Returns the loader associated with this instance.
*
* @since 2.4.4
* @since Moodle 2.4.4
* @return cache|false
*/
protected function get_loader() {
@ -902,7 +902,7 @@ class cache implements cache_loader {
/**
* Returns the data source associated with this cache.
*
* @since 2.4.4
* @since Moodle 2.4.4
* @return cache_data_source|false
*/
protected function get_datasource() {

View file

@ -87,7 +87,7 @@ interface cache_store_interface {
* All cache store plugins must extend this base class.
* It lays down the foundation for what is required of a cache store plugin.
*
* @since 2.4
* @since Moodle 2.4
* @package core
* @category cache
* @copyright 2012 Sam Hemelryk
@ -256,7 +256,7 @@ abstract class cache_store implements cache_store_interface {
/**
* Performs any necessary operation when the store instance has been created.
*
* @since 2.5
* @since Moodle 2.5
*/
public function instance_created() {
// By default, do nothing.
@ -267,7 +267,7 @@ abstract class cache_store implements cache_store_interface {
*
* This method may be called before the store has been initialised.
*
* @since 2.5
* @since Moodle 2.5
* @see cleanup()
*/
public function instance_deleted() {