mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-19057 fixed more phpdocs
This commit is contained in:
parent
ded99d1ab2
commit
d868e87934
1 changed files with 3 additions and 3 deletions
|
@ -780,10 +780,10 @@ abstract class moodle_database {
|
||||||
public abstract function get_indexes($table);
|
public abstract function get_indexes($table);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns datailed information about columns in table. This information is cached internally.
|
* Returns detailed information about columns in table. This information is cached internally.
|
||||||
* @param string $table name
|
* @param string $table name
|
||||||
* @param bool $usecache
|
* @param bool $usecache
|
||||||
* @return array array of database_column_info objects indexed with column names
|
* @return array of database_column_info objects indexed with column names
|
||||||
*/
|
*/
|
||||||
public abstract function get_columns($table, $usecache=true);
|
public abstract function get_columns($table, $usecache=true);
|
||||||
|
|
||||||
|
@ -809,7 +809,7 @@ abstract class moodle_database {
|
||||||
/**
|
/**
|
||||||
* Returns sql generator used for db manipulation.
|
* Returns sql generator used for db manipulation.
|
||||||
* Used mostly in upgrade.php scripts.
|
* Used mostly in upgrade.php scripts.
|
||||||
* @return object database_manager instance
|
* @return database_manager instance
|
||||||
*/
|
*/
|
||||||
public function get_manager() {
|
public function get_manager() {
|
||||||
global $CFG;
|
global $CFG;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue