@@ -115,7 +115,7 @@ |
||
| 115 | 115 | \OC_Util::setupFS($user); |
| 116 | 116 | |
| 117 | 117 | // Check if this user has a version directory |
| 118 | - $view = new \OC\Files\View('/' . $user); |
|
| 118 | + $view = new \OC\Files\View('/'.$user); |
|
| 119 | 119 | if (!$view->is_dir('/files_versions')) { |
| 120 | 120 | return false; |
| 121 | 121 | } |
@@ -107,8 +107,8 @@ |
||
| 107 | 107 | protected function deleteVersions($user) { |
| 108 | 108 | \OC_Util::tearDownFS(); |
| 109 | 109 | \OC_Util::setupFS($user); |
| 110 | - if ($this->rootFolder->nodeExists('/' . $user . '/files_versions')) { |
|
| 111 | - $this->rootFolder->get('/' . $user . '/files_versions')->delete(); |
|
| 110 | + if ($this->rootFolder->nodeExists('/'.$user.'/files_versions')) { |
|
| 111 | + $this->rootFolder->get('/'.$user.'/files_versions')->delete(); |
|
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | \OC_Util::setupFS($user); |
| 87 | 87 | |
| 88 | 88 | // Check if this user has a versions directory |
| 89 | - $view = new \OC\Files\View('/' . $user); |
|
| 89 | + $view = new \OC\Files\View('/'.$user); |
|
| 90 | 90 | if (!$view->is_dir('/files_versions')) { |
| 91 | 91 | return false; |
| 92 | 92 | } |
@@ -42,11 +42,11 @@ |
||
| 42 | 42 | const METHOD_STREAM = 'stream'; |
| 43 | 43 | const METHOD_MAIL = 'email'; |
| 44 | 44 | |
| 45 | - const PRIORITY_VERYLOW = 10; |
|
| 46 | - const PRIORITY_LOW = 20; |
|
| 47 | - const PRIORITY_MEDIUM = 30; |
|
| 48 | - const PRIORITY_HIGH = 40; |
|
| 49 | - const PRIORITY_VERYHIGH = 50; |
|
| 45 | + const PRIORITY_VERYLOW = 10; |
|
| 46 | + const PRIORITY_LOW = 20; |
|
| 47 | + const PRIORITY_MEDIUM = 30; |
|
| 48 | + const PRIORITY_HIGH = 40; |
|
| 49 | + const PRIORITY_VERYHIGH = 50; |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * The extension can return an array of additional notification types. |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | * remove all user backends |
| 69 | 69 | * @since 8.0.0 |
| 70 | 70 | */ |
| 71 | - public function clearBackends() ; |
|
| 71 | + public function clearBackends(); |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * get a user by user id |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | */ |
| 62 | 62 | public function addEntityCollection($name, \Closure $entityExistsFunction) { |
| 63 | 63 | if (isset($this->collections[$name])) { |
| 64 | - throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"'); |
|
| 64 | + throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"'); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | $this->collections[$name] = $entityExistsFunction; |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * @deprecated 9.1.0 Use the AppFramework |
| 73 | 73 | */ |
| 74 | 74 | public static function register($method, $url, $action, $app, $authLevel = self::USER_AUTH, |
| 75 | - $defaults = array(), $requirements = array()){ |
|
| 75 | + $defaults = array(), $requirements = array()) { |
|
| 76 | 76 | \OC_API::register($method, $url, $action, $app, $authLevel, $defaults, $requirements); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -159,7 +159,7 @@ |
||
| 159 | 159 | * @return bool Returns false on error. |
| 160 | 160 | * @since 6.0.0 |
| 161 | 161 | */ |
| 162 | - public function addMultiple($names, $sync=false, $id = null); |
|
| 162 | + public function addMultiple($names, $sync = false, $id = null); |
|
| 163 | 163 | |
| 164 | 164 | /** |
| 165 | 165 | * Delete tag/object relations from the db |
@@ -57,6 +57,6 @@ |
||
| 57 | 57 | * @since 7.0.0 |
| 58 | 58 | */ |
| 59 | 59 | public function __toString() { |
| 60 | - return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; |
|
| 60 | + return __CLASS__.": [{$this->code}]: {$this->message}\n"; |
|
| 61 | 61 | } |
| 62 | 62 | } |