MDL-45618 Fix @since PHPdoc tags.

This commit is contained in:
Tim Hunt 2014-05-19 17:03:04 +01:00
parent a929fd50f9
commit 5bcfd504df
110 changed files with 191 additions and 191 deletions

View file

@ -588,7 +588,7 @@ EOD;
* @param array|stdClass $record data to use to up set the instance.
* @param array $options options
* @return stdClass repository instance record
* @since 2.5.1
* @since Moodle 2.5.1
*/
public function create_repository($type, $record=null, array $options = null) {
$generator = $this->get_plugin_generator('repository_'.$type);
@ -602,7 +602,7 @@ EOD;
* @param array|stdClass $record data to use to up set the instance.
* @param array $options options
* @return repository_type object
* @since 2.5.1
* @since Moodle 2.5.1
*/
public function create_repository_type($type, $record=null, array $options = null) {
$generator = $this->get_plugin_generator('repository_'.$type);

View file

@ -32,7 +32,7 @@ defined('MOODLE_INTERNAL') || die();
* @category test
* @copyright 2013 Frédéric Massart
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since 2.5.1
* @since Moodle 2.5.1
*/
class testing_repository_generator extends component_generator_base {