PHPDoc fixes as suggested by @MorrisJobke.
This commit is contained in:
parent
1770179648
commit
b416f7d8ac
|
@ -55,8 +55,11 @@ class Tag extends Entity {
|
|||
|
||||
/**
|
||||
* Transform a database columnname to a property
|
||||
*
|
||||
* @param string $columnName the name of the column
|
||||
* @return string the property name
|
||||
* @todo migrate existing database columns to the correct names
|
||||
* to be able to drop this direct mapping
|
||||
*/
|
||||
public function columnToProperty($columnName){
|
||||
if ($columnName === 'category') {
|
||||
|
@ -70,6 +73,7 @@ class Tag extends Entity {
|
|||
|
||||
/**
|
||||
* Transform a property to a database column name
|
||||
*
|
||||
* @param string $property the name of the property
|
||||
* @return string the column name
|
||||
*/
|
||||
|
|
|
@ -27,7 +27,7 @@ use \OCP\AppFramework\Db\Mapper,
|
|||
\OCP\IDb;
|
||||
|
||||
/**
|
||||
* Thin wrapper around \OCP\AppFramework\Db\Mapper.
|
||||
* Mapper for Tag entity
|
||||
*/
|
||||
class TagMapper extends Mapper {
|
||||
|
||||
|
|
|
@ -324,7 +324,7 @@ class Tags implements \OCP\ITags {
|
|||
/**
|
||||
* Rename tag.
|
||||
*
|
||||
* @param string $from The name of the existing tag
|
||||
* @param string|integer $from The name or ID of the existing tag
|
||||
* @param string $to The new name of the tag.
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -639,7 +639,7 @@ class Tags implements \OCP\ITags {
|
|||
/**
|
||||
* Delete tags from the database.
|
||||
*
|
||||
* @param string[] $names An array of tags (names or IDs) to delete
|
||||
* @param string[]|integer[] $names An array of tags (names or IDs) to delete
|
||||
* @return bool Returns false on error
|
||||
*/
|
||||
public function delete($names) {
|
||||
|
|
|
@ -114,7 +114,7 @@ interface ITags {
|
|||
/**
|
||||
* Rename tag.
|
||||
*
|
||||
* @param string $from The name of the existing tag
|
||||
* @param string|integer $from The name or ID of the existing tag
|
||||
* @param string $to The new name of the tag.
|
||||
* @return bool
|
||||
*/
|
||||
|
@ -183,7 +183,7 @@ interface ITags {
|
|||
/**
|
||||
* Delete tags from the database
|
||||
*
|
||||
* @param string[] $names An array of tags to delete
|
||||
* @param string[]|integer[] $names An array of tags (names or IDs) to delete
|
||||
* @return bool Returns false on error
|
||||
*/
|
||||
public function delete($names);
|
||||
|
|
Loading…
Reference in New Issue