Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Tagging/Tag.php')
-rw-r--r--lib/private/Tagging/Tag.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Tagging/Tag.php b/lib/private/Tagging/Tag.php
index e82860c1d3d..f818a115b25 100644
--- a/lib/private/Tagging/Tag.php
+++ b/lib/private/Tagging/Tag.php
@@ -63,7 +63,7 @@ class Tag extends Entity {
* @todo migrate existing database columns to the correct names
* to be able to drop this direct mapping
*/
- public function columnToProperty($columnName){
+ public function columnToProperty($columnName) {
if ($columnName === 'category') {
return 'name';
} elseif ($columnName === 'uid') {
@@ -79,7 +79,7 @@ class Tag extends Entity {
* @param string $property the name of the property
* @return string the column name
*/
- public function propertyToColumn($property){
+ public function propertyToColumn($property) {
if ($property === 'name') {
return 'category';
} elseif ($property === 'owner') {