mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-45618 Fix @since PHPdoc tags.
This commit is contained in:
parent
a929fd50f9
commit
5bcfd504df
110 changed files with 191 additions and 191 deletions
4
cache/classes/definition.php
vendored
4
cache/classes/definition.php
vendored
|
@ -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() {
|
||||
|
|
2
cache/classes/factory.php
vendored
2
cache/classes/factory.php
vendored
|
@ -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() {
|
||||
|
|
2
cache/classes/interfaces.php
vendored
2
cache/classes/interfaces.php
vendored
|
@ -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 {
|
||||
/**
|
||||
|
|
4
cache/classes/loaders.php
vendored
4
cache/classes/loaders.php
vendored
|
@ -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() {
|
||||
|
|
6
cache/classes/store.php
vendored
6
cache/classes/store.php
vendored
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue