Passed
Push — master ( 27fb46...dad31c )
by rakekniven
15:02 queued 12s
created
lib/private/Lockdown/Filesystem/NullStorage.php 1 patch
Indentation   +114 added lines, -114 removed lines patch added patch discarded remove patch
@@ -25,155 +25,155 @@
 block discarded – undo
25 25
 use OCP\Files\Storage\IStorage;
26 26
 
27 27
 class NullStorage extends Common {
28
-	public function __construct($parameters) {
29
-		parent::__construct($parameters);
30
-	}
28
+    public function __construct($parameters) {
29
+        parent::__construct($parameters);
30
+    }
31 31
 
32
-	public function getId() {
33
-		return 'null';
34
-	}
32
+    public function getId() {
33
+        return 'null';
34
+    }
35 35
 
36
-	public function mkdir($path) {
37
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
38
-	}
36
+    public function mkdir($path) {
37
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
38
+    }
39 39
 
40
-	public function rmdir($path) {
41
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
42
-	}
40
+    public function rmdir($path) {
41
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
42
+    }
43 43
 
44
-	public function opendir($path) {
45
-		return new IteratorDirectory([]);
46
-	}
44
+    public function opendir($path) {
45
+        return new IteratorDirectory([]);
46
+    }
47 47
 
48
-	public function is_dir($path) {
49
-		return $path === '';
50
-	}
48
+    public function is_dir($path) {
49
+        return $path === '';
50
+    }
51 51
 
52
-	public function is_file($path) {
53
-		return false;
54
-	}
52
+    public function is_file($path) {
53
+        return false;
54
+    }
55 55
 
56
-	public function stat($path) {
57
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
58
-	}
56
+    public function stat($path) {
57
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
58
+    }
59 59
 
60
-	public function filetype($path) {
61
-		return ($path === '') ? 'dir' : false;
62
-	}
60
+    public function filetype($path) {
61
+        return ($path === '') ? 'dir' : false;
62
+    }
63 63
 
64
-	public function filesize($path) {
65
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
66
-	}
64
+    public function filesize($path) {
65
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
66
+    }
67 67
 
68
-	public function isCreatable($path) {
69
-		return false;
70
-	}
68
+    public function isCreatable($path) {
69
+        return false;
70
+    }
71 71
 
72
-	public function isReadable($path) {
73
-		return $path === '';
74
-	}
72
+    public function isReadable($path) {
73
+        return $path === '';
74
+    }
75 75
 
76
-	public function isUpdatable($path) {
77
-		return false;
78
-	}
76
+    public function isUpdatable($path) {
77
+        return false;
78
+    }
79 79
 
80
-	public function isDeletable($path) {
81
-		return false;
82
-	}
80
+    public function isDeletable($path) {
81
+        return false;
82
+    }
83 83
 
84
-	public function isSharable($path) {
85
-		return false;
86
-	}
84
+    public function isSharable($path) {
85
+        return false;
86
+    }
87 87
 
88
-	public function getPermissions($path) {
89
-		return null;
90
-	}
88
+    public function getPermissions($path) {
89
+        return null;
90
+    }
91 91
 
92
-	public function file_exists($path) {
93
-		return $path === '';
94
-	}
92
+    public function file_exists($path) {
93
+        return $path === '';
94
+    }
95 95
 
96
-	public function filemtime($path) {
97
-		return ($path === '') ? time() : false;
98
-	}
96
+    public function filemtime($path) {
97
+        return ($path === '') ? time() : false;
98
+    }
99 99
 
100
-	public function file_get_contents($path) {
101
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
102
-	}
100
+    public function file_get_contents($path) {
101
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
102
+    }
103 103
 
104
-	public function file_put_contents($path, $data) {
105
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
106
-	}
104
+    public function file_put_contents($path, $data) {
105
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
106
+    }
107 107
 
108
-	public function unlink($path) {
109
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
110
-	}
108
+    public function unlink($path) {
109
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
110
+    }
111 111
 
112
-	public function rename($path1, $path2) {
113
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
114
-	}
112
+    public function rename($path1, $path2) {
113
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
114
+    }
115 115
 
116
-	public function copy($path1, $path2) {
117
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
118
-	}
116
+    public function copy($path1, $path2) {
117
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
118
+    }
119 119
 
120
-	public function fopen($path, $mode) {
121
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
122
-	}
120
+    public function fopen($path, $mode) {
121
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
122
+    }
123 123
 
124
-	public function getMimeType($path) {
125
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
126
-	}
124
+    public function getMimeType($path) {
125
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
126
+    }
127 127
 
128
-	public function hash($type, $path, $raw = false) {
129
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
130
-	}
128
+    public function hash($type, $path, $raw = false) {
129
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
130
+    }
131 131
 
132
-	public function free_space($path) {
133
-		return FileInfo::SPACE_UNKNOWN;
134
-	}
132
+    public function free_space($path) {
133
+        return FileInfo::SPACE_UNKNOWN;
134
+    }
135 135
 
136
-	public function touch($path, $mtime = null) {
137
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
138
-	}
136
+    public function touch($path, $mtime = null) {
137
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
138
+    }
139 139
 
140
-	public function getLocalFile($path) {
141
-		return false;
142
-	}
140
+    public function getLocalFile($path) {
141
+        return false;
142
+    }
143 143
 
144
-	public function hasUpdated($path, $time) {
145
-		return false;
146
-	}
144
+    public function hasUpdated($path, $time) {
145
+        return false;
146
+    }
147 147
 
148
-	public function getETag($path) {
149
-		return '';
150
-	}
148
+    public function getETag($path) {
149
+        return '';
150
+    }
151 151
 
152
-	public function isLocal() {
153
-		return false;
154
-	}
152
+    public function isLocal() {
153
+        return false;
154
+    }
155 155
 
156
-	public function getDirectDownload($path) {
157
-		return false;
158
-	}
156
+    public function getDirectDownload($path) {
157
+        return false;
158
+    }
159 159
 
160
-	public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
161
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
162
-	}
160
+    public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
161
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
162
+    }
163 163
 
164
-	public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
165
-		throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
166
-	}
164
+    public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
165
+        throw new \OC\ForbiddenException('This request is not allowed to access the filesystem');
166
+    }
167 167
 
168
-	public function test() {
169
-		return true;
170
-	}
168
+    public function test() {
169
+        return true;
170
+    }
171 171
 
172
-	public function getOwner($path) {
173
-		return null;
174
-	}
172
+    public function getOwner($path) {
173
+        return null;
174
+    }
175 175
 
176
-	public function getCache($path = '', $storage = null) {
177
-		return new NullCache();
178
-	}
176
+    public function getCache($path = '', $storage = null) {
177
+        return new NullCache();
178
+    }
179 179
 }
Please login to merge, or discard this patch.
lib/private/Files/Storage/FailedStorage.php 1 patch
Indentation   +165 added lines, -165 removed lines patch added patch discarded remove patch
@@ -34,185 +34,185 @@
 block discarded – undo
34 34
  */
35 35
 class FailedStorage extends Common {
36 36
 
37
-	/** @var \Exception */
38
-	protected $e;
39
-
40
-	/**
41
-	 * @param array $params ['exception' => \Exception]
42
-	 */
43
-	public function __construct($params) {
44
-		$this->e = $params['exception'];
45
-		if (!$this->e) {
46
-			throw new \InvalidArgumentException('Missing "exception" argument in FailedStorage constructor');
47
-		}
48
-	}
49
-
50
-	public function getId() {
51
-		// we can't return anything sane here
52
-		return 'failedstorage';
53
-	}
54
-
55
-	public function mkdir($path) {
56
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
57
-	}
58
-
59
-	public function rmdir($path) {
60
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
61
-	}
62
-
63
-	public function opendir($path) {
64
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
65
-	}
66
-
67
-	public function is_dir($path) {
68
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
69
-	}
70
-
71
-	public function is_file($path) {
72
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
73
-	}
74
-
75
-	public function stat($path) {
76
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
77
-	}
78
-
79
-	public function filetype($path) {
80
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
81
-	}
82
-
83
-	public function filesize($path) {
84
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
85
-	}
86
-
87
-	public function isCreatable($path) {
88
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
89
-	}
90
-
91
-	public function isReadable($path) {
92
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
93
-	}
94
-
95
-	public function isUpdatable($path) {
96
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
97
-	}
98
-
99
-	public function isDeletable($path) {
100
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
101
-	}
102
-
103
-	public function isSharable($path) {
104
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
105
-	}
106
-
107
-	public function getPermissions($path) {
108
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
109
-	}
110
-
111
-	public function file_exists($path) {
112
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
113
-	}
114
-
115
-	public function filemtime($path) {
116
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
117
-	}
118
-
119
-	public function file_get_contents($path) {
120
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
121
-	}
122
-
123
-	public function file_put_contents($path, $data) {
124
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
125
-	}
126
-
127
-	public function unlink($path) {
128
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
129
-	}
130
-
131
-	public function rename($path1, $path2) {
132
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
133
-	}
134
-
135
-	public function copy($path1, $path2) {
136
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
137
-	}
138
-
139
-	public function fopen($path, $mode) {
140
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
141
-	}
142
-
143
-	public function getMimeType($path) {
144
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
145
-	}
146
-
147
-	public function hash($type, $path, $raw = false) {
148
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
149
-	}
150
-
151
-	public function free_space($path) {
152
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
153
-	}
37
+    /** @var \Exception */
38
+    protected $e;
39
+
40
+    /**
41
+     * @param array $params ['exception' => \Exception]
42
+     */
43
+    public function __construct($params) {
44
+        $this->e = $params['exception'];
45
+        if (!$this->e) {
46
+            throw new \InvalidArgumentException('Missing "exception" argument in FailedStorage constructor');
47
+        }
48
+    }
49
+
50
+    public function getId() {
51
+        // we can't return anything sane here
52
+        return 'failedstorage';
53
+    }
54
+
55
+    public function mkdir($path) {
56
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
57
+    }
58
+
59
+    public function rmdir($path) {
60
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
61
+    }
62
+
63
+    public function opendir($path) {
64
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
65
+    }
66
+
67
+    public function is_dir($path) {
68
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
69
+    }
70
+
71
+    public function is_file($path) {
72
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
73
+    }
74
+
75
+    public function stat($path) {
76
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
77
+    }
78
+
79
+    public function filetype($path) {
80
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
81
+    }
82
+
83
+    public function filesize($path) {
84
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
85
+    }
86
+
87
+    public function isCreatable($path) {
88
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
89
+    }
90
+
91
+    public function isReadable($path) {
92
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
93
+    }
94
+
95
+    public function isUpdatable($path) {
96
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
97
+    }
98
+
99
+    public function isDeletable($path) {
100
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
101
+    }
102
+
103
+    public function isSharable($path) {
104
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
105
+    }
106
+
107
+    public function getPermissions($path) {
108
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
109
+    }
110
+
111
+    public function file_exists($path) {
112
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
113
+    }
114
+
115
+    public function filemtime($path) {
116
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
117
+    }
118
+
119
+    public function file_get_contents($path) {
120
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
121
+    }
122
+
123
+    public function file_put_contents($path, $data) {
124
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
125
+    }
126
+
127
+    public function unlink($path) {
128
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
129
+    }
130
+
131
+    public function rename($path1, $path2) {
132
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
133
+    }
134
+
135
+    public function copy($path1, $path2) {
136
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
137
+    }
138
+
139
+    public function fopen($path, $mode) {
140
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
141
+    }
142
+
143
+    public function getMimeType($path) {
144
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
145
+    }
146
+
147
+    public function hash($type, $path, $raw = false) {
148
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
149
+    }
150
+
151
+    public function free_space($path) {
152
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
153
+    }
154 154
 
155
-	public function search($query) {
156
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
157
-	}
155
+    public function search($query) {
156
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
157
+    }
158 158
 
159
-	public function touch($path, $mtime = null) {
160
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
161
-	}
159
+    public function touch($path, $mtime = null) {
160
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
161
+    }
162 162
 
163
-	public function getLocalFile($path) {
164
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
165
-	}
163
+    public function getLocalFile($path) {
164
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
165
+    }
166 166
 
167
-	public function getLocalFolder($path) {
168
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
169
-	}
167
+    public function getLocalFolder($path) {
168
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
169
+    }
170 170
 
171
-	public function hasUpdated($path, $time) {
172
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
173
-	}
171
+    public function hasUpdated($path, $time) {
172
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
173
+    }
174 174
 
175
-	public function getETag($path) {
176
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
177
-	}
175
+    public function getETag($path) {
176
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
177
+    }
178 178
 
179
-	public function getDirectDownload($path) {
180
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
181
-	}
179
+    public function getDirectDownload($path) {
180
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
181
+    }
182 182
 
183
-	public function verifyPath($path, $fileName) {
184
-		return true;
185
-	}
183
+    public function verifyPath($path, $fileName) {
184
+        return true;
185
+    }
186 186
 
187
-	public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
188
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
189
-	}
187
+    public function copyFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath, $preserveMtime = false) {
188
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
189
+    }
190 190
 
191
-	public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
192
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
193
-	}
191
+    public function moveFromStorage(IStorage $sourceStorage, $sourceInternalPath, $targetInternalPath) {
192
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
193
+    }
194 194
 
195
-	public function acquireLock($path, $type, ILockingProvider $provider) {
196
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
197
-	}
195
+    public function acquireLock($path, $type, ILockingProvider $provider) {
196
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
197
+    }
198 198
 
199
-	public function releaseLock($path, $type, ILockingProvider $provider) {
200
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
201
-	}
199
+    public function releaseLock($path, $type, ILockingProvider $provider) {
200
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
201
+    }
202 202
 
203
-	public function changeLock($path, $type, ILockingProvider $provider) {
204
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
205
-	}
203
+    public function changeLock($path, $type, ILockingProvider $provider) {
204
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
205
+    }
206 206
 
207
-	public function getAvailability() {
208
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
209
-	}
207
+    public function getAvailability() {
208
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
209
+    }
210 210
 
211
-	public function setAvailability($isAvailable) {
212
-		throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
213
-	}
211
+    public function setAvailability($isAvailable) {
212
+        throw new StorageNotAvailableException($this->e->getMessage(), $this->e->getCode(), $this->e);
213
+    }
214 214
 
215
-	public function getCache($path = '', $storage = null) {
216
-		return new FailedCache();
217
-	}
215
+    public function getCache($path = '', $storage = null) {
216
+        return new FailedCache();
217
+    }
218 218
 }
Please login to merge, or discard this patch.
apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php 1 patch
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -13,74 +13,74 @@
 block discarded – undo
13 13
 use OCP\Share\IManager;
14 14
 
15 15
 class ShareInfoMiddleware extends Middleware {
16
-	/** @var IManager */
17
-	private $shareManager;
16
+    /** @var IManager */
17
+    private $shareManager;
18 18
 
19
-	public function __construct(IManager $shareManager) {
20
-		$this->shareManager = $shareManager;
21
-	}
19
+    public function __construct(IManager $shareManager) {
20
+        $this->shareManager = $shareManager;
21
+    }
22 22
 
23
-	/**
24
-	 * @param Controller $controller
25
-	 * @param string $methodName
26
-	 * @throws S2SException
27
-	 */
28
-	public function beforeController($controller, $methodName) {
29
-		if (!($controller instanceof ShareInfoController)) {
30
-			return;
31
-		}
23
+    /**
24
+     * @param Controller $controller
25
+     * @param string $methodName
26
+     * @throws S2SException
27
+     */
28
+    public function beforeController($controller, $methodName) {
29
+        if (!($controller instanceof ShareInfoController)) {
30
+            return;
31
+        }
32 32
 
33
-		if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
34
-			throw new S2SException();
35
-		}
36
-	}
33
+        if (!$this->shareManager->outgoingServer2ServerSharesAllowed()) {
34
+            throw new S2SException();
35
+        }
36
+    }
37 37
 
38
-	/**
39
-	 * @param Controller $controller
40
-	 * @param string $methodName
41
-	 * @param \Exception $exception
42
-	 * @throws \Exception
43
-	 * @return Response
44
-	 */
45
-	public function afterException($controller, $methodName, \Exception $exception) {
46
-		if (!($controller instanceof ShareInfoController)) {
47
-			throw $exception;
48
-		}
38
+    /**
39
+     * @param Controller $controller
40
+     * @param string $methodName
41
+     * @param \Exception $exception
42
+     * @throws \Exception
43
+     * @return Response
44
+     */
45
+    public function afterException($controller, $methodName, \Exception $exception) {
46
+        if (!($controller instanceof ShareInfoController)) {
47
+            throw $exception;
48
+        }
49 49
 
50
-		if ($exception instanceof S2SException) {
51
-			return new JSONResponse([], Http::STATUS_NOT_FOUND);
52
-		}
50
+        if ($exception instanceof S2SException) {
51
+            return new JSONResponse([], Http::STATUS_NOT_FOUND);
52
+        }
53 53
 
54
-		throw $exception;
55
-	}
54
+        throw $exception;
55
+    }
56 56
 
57
-	/**
58
-	 * @param Controller $controller
59
-	 * @param string $methodName
60
-	 * @param Response $response
61
-	 * @return Response
62
-	 */
63
-	public function afterController($controller, $methodName, Response $response) {
64
-		if (!($controller instanceof ShareInfoController)) {
65
-			return $response;
66
-		}
57
+    /**
58
+     * @param Controller $controller
59
+     * @param string $methodName
60
+     * @param Response $response
61
+     * @return Response
62
+     */
63
+    public function afterController($controller, $methodName, Response $response) {
64
+        if (!($controller instanceof ShareInfoController)) {
65
+            return $response;
66
+        }
67 67
 
68
-		if (!($response instanceof JSONResponse)) {
69
-			return $response;
70
-		}
68
+        if (!($response instanceof JSONResponse)) {
69
+            return $response;
70
+        }
71 71
 
72
-		$data = $response->getData();
73
-		$status = 'error';
72
+        $data = $response->getData();
73
+        $status = 'error';
74 74
 
75
-		if ($response->getStatus() === Http::STATUS_OK) {
76
-			$status = 'success';
77
-		}
75
+        if ($response->getStatus() === Http::STATUS_OK) {
76
+            $status = 'success';
77
+        }
78 78
 
79
-		$response->setData([
80
-			'data' => $data,
81
-			'status' => $status,
82
-		]);
79
+        $response->setData([
80
+            'data' => $data,
81
+            'status' => $status,
82
+        ]);
83 83
 
84
-		return $response;
85
-	}
84
+        return $response;
85
+    }
86 86
 }
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Auth/InvalidAuth.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@
 block discarded – undo
27 27
  */
28 28
 class InvalidAuth extends AuthMechanism {
29 29
 
30
-	/**
31
-	 * Constructs a new InvalidAuth with the id of the invalid auth
32
-	 * for display purposes
33
-	 *
34
-	 * @param string $invalidId invalid id
35
-	 */
36
-	public function __construct($invalidId) {
37
-		$this
38
-			->setIdentifier($invalidId)
39
-			->setScheme(self::SCHEME_NULL)
40
-			->setText('Unknown auth mechanism backend ' . $invalidId)
41
-		;
42
-	}
30
+    /**
31
+     * Constructs a new InvalidAuth with the id of the invalid auth
32
+     * for display purposes
33
+     *
34
+     * @param string $invalidId invalid id
35
+     */
36
+    public function __construct($invalidId) {
37
+        $this
38
+            ->setIdentifier($invalidId)
39
+            ->setScheme(self::SCHEME_NULL)
40
+            ->setText('Unknown auth mechanism backend ' . $invalidId)
41
+        ;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 		$this
39 39
 			->setIdentifier($invalidId)
40 40
 			->setScheme(self::SCHEME_NULL)
41
-			->setText('Unknown auth mechanism backend ' . $invalidId)
41
+			->setText('Unknown auth mechanism backend '.$invalidId)
42 42
 		;
43 43
 	}
44 44
 }
Please login to merge, or discard this patch.
apps/user_ldap/lib/IGroupLDAP.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -26,20 +26,20 @@
 block discarded – undo
26 26
 
27 27
 interface IGroupLDAP {
28 28
 
29
-	//Used by LDAPProvider
29
+    //Used by LDAPProvider
30 30
 
31
-	/**
32
-	 * Return access for LDAP interaction.
33
-	 * @param string $gid
34
-	 * @return Access instance of Access for LDAP interaction
35
-	 */
36
-	public function getLDAPAccess($gid);
31
+    /**
32
+     * Return access for LDAP interaction.
33
+     * @param string $gid
34
+     * @return Access instance of Access for LDAP interaction
35
+     */
36
+    public function getLDAPAccess($gid);
37 37
 
38
-	/**
39
-	 * Return a new LDAP connection for the specified group.
40
-	 * @param string $gid
41
-	 * @return resource of the LDAP connection
42
-	 */
43
-	public function getNewLDAPConnection($gid);
38
+    /**
39
+     * Return a new LDAP connection for the specified group.
40
+     * @param string $gid
41
+     * @return resource of the LDAP connection
42
+     */
43
+    public function getNewLDAPConnection($gid);
44 44
 
45 45
 }
Please login to merge, or discard this patch.
lib/public/Authentication/IApacheBackend.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -38,27 +38,27 @@
 block discarded – undo
38 38
  */
39 39
 interface IApacheBackend {
40 40
 
41
-	/**
42
-	 * In case the user has been authenticated by a module true is returned.
43
-	 *
44
-	 * @return boolean whether the module reports a user as currently logged in.
45
-	 * @since 6.0.0
46
-	 */
47
-	public function isSessionActive();
41
+    /**
42
+     * In case the user has been authenticated by a module true is returned.
43
+     *
44
+     * @return boolean whether the module reports a user as currently logged in.
45
+     * @since 6.0.0
46
+     */
47
+    public function isSessionActive();
48 48
 
49
-	/**
50
-	 * Gets the current logout URL
51
-	 *
52
-	 * @return string
53
-	 * @since 12.0.3
54
-	 */
55
-	public function getLogoutUrl();
49
+    /**
50
+     * Gets the current logout URL
51
+     *
52
+     * @return string
53
+     * @since 12.0.3
54
+     */
55
+    public function getLogoutUrl();
56 56
 
57
-	/**
58
-	 * Return the id of the current user
59
-	 * @return string
60
-	 * @since 6.0.0
61
-	 */
62
-	public function getCurrentUserId();
57
+    /**
58
+     * Return the id of the current user
59
+     * @return string
60
+     * @since 6.0.0
61
+     */
62
+    public function getCurrentUserId();
63 63
 
64 64
 }
Please login to merge, or discard this patch.
lib/private/Command/AsyncBus.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -29,76 +29,76 @@
 block discarded – undo
29 29
  * Asynchronous command bus that uses the background job system as backend
30 30
  */
31 31
 abstract class AsyncBus implements IBus {
32
-	/**
33
-	 * List of traits for command which require sync execution
34
-	 *
35
-	 * @var string[]
36
-	 */
37
-	private $syncTraits = [];
32
+    /**
33
+     * List of traits for command which require sync execution
34
+     *
35
+     * @var string[]
36
+     */
37
+    private $syncTraits = [];
38 38
 
39
-	/**
40
-	 * Schedule a command to be fired
41
-	 *
42
-	 * @param \OCP\Command\ICommand | callable $command
43
-	 */
44
-	public function push($command) {
45
-		if ($this->canRunAsync($command)) {
46
-			$this->queueCommand($command);
47
-		} else {
48
-			$this->runCommand($command);
49
-		}
50
-	}
39
+    /**
40
+     * Schedule a command to be fired
41
+     *
42
+     * @param \OCP\Command\ICommand | callable $command
43
+     */
44
+    public function push($command) {
45
+        if ($this->canRunAsync($command)) {
46
+            $this->queueCommand($command);
47
+        } else {
48
+            $this->runCommand($command);
49
+        }
50
+    }
51 51
 
52
-	/**
53
-	 * Queue a command in the bus
54
-	 *
55
-	 * @param \OCP\Command\ICommand | callable $command
56
-	 */
57
-	abstract protected function queueCommand($command);
52
+    /**
53
+     * Queue a command in the bus
54
+     *
55
+     * @param \OCP\Command\ICommand | callable $command
56
+     */
57
+    abstract protected function queueCommand($command);
58 58
 
59
-	/**
60
-	 * Require all commands using a trait to be run synchronous
61
-	 *
62
-	 * @param string $trait
63
-	 */
64
-	public function requireSync($trait) {
65
-		$this->syncTraits[] = trim($trait, '\\');
66
-	}
59
+    /**
60
+     * Require all commands using a trait to be run synchronous
61
+     *
62
+     * @param string $trait
63
+     */
64
+    public function requireSync($trait) {
65
+        $this->syncTraits[] = trim($trait, '\\');
66
+    }
67 67
 
68
-	/**
69
-	 * @param \OCP\Command\ICommand | callable $command
70
-	 */
71
-	private function runCommand($command) {
72
-		if ($command instanceof ICommand) {
73
-			$command->handle();
74
-		} else {
75
-			$command();
76
-		}
77
-	}
68
+    /**
69
+     * @param \OCP\Command\ICommand | callable $command
70
+     */
71
+    private function runCommand($command) {
72
+        if ($command instanceof ICommand) {
73
+            $command->handle();
74
+        } else {
75
+            $command();
76
+        }
77
+    }
78 78
 
79
-	/**
80
-	 * @param \OCP\Command\ICommand | callable $command
81
-	 * @return bool
82
-	 */
83
-	private function canRunAsync($command) {
84
-		$traits = $this->getTraits($command);
85
-		foreach ($traits as $trait) {
86
-			if (array_search($trait, $this->syncTraits) !== false) {
87
-				return false;
88
-			}
89
-		}
90
-		return true;
91
-	}
79
+    /**
80
+     * @param \OCP\Command\ICommand | callable $command
81
+     * @return bool
82
+     */
83
+    private function canRunAsync($command) {
84
+        $traits = $this->getTraits($command);
85
+        foreach ($traits as $trait) {
86
+            if (array_search($trait, $this->syncTraits) !== false) {
87
+                return false;
88
+            }
89
+        }
90
+        return true;
91
+    }
92 92
 
93
-	/**
94
-	 * @param \OCP\Command\ICommand | callable $command
95
-	 * @return string[]
96
-	 */
97
-	private function getTraits($command) {
98
-		if ($command instanceof ICommand) {
99
-			return class_uses($command);
100
-		} else {
101
-			return [];
102
-		}
103
-	}
93
+    /**
94
+     * @param \OCP\Command\ICommand | callable $command
95
+     * @return string[]
96
+     */
97
+    private function getTraits($command) {
98
+        if ($command instanceof ICommand) {
99
+            return class_uses($command);
100
+        } else {
101
+            return [];
102
+        }
103
+    }
104 104
 }
Please login to merge, or discard this patch.
lib/public/Collaboration/Collaborators/ISearchPlugin.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,13 +30,13 @@
 block discarded – undo
30 30
  * @since 13.0.0
31 31
  */
32 32
 interface ISearchPlugin {
33
-	/**
34
-	 * @param string $search
35
-	 * @param int $limit
36
-	 * @param int $offset
37
-	 * @param ISearchResult $searchResult
38
-	 * @return bool whether the plugin has more results
39
-	 * @since 13.0.0
40
-	 */
41
-	public function search($search, $limit, $offset, ISearchResult $searchResult);
33
+    /**
34
+     * @param string $search
35
+     * @param int $limit
36
+     * @param int $offset
37
+     * @param ISearchResult $searchResult
38
+     * @return bool whether the plugin has more results
39
+     * @since 13.0.0
40
+     */
41
+    public function search($search, $limit, $offset, ISearchResult $searchResult);
42 42
 }
Please login to merge, or discard this patch.
lib/public/Collaboration/Collaborators/ISearch.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -30,21 +30,21 @@
 block discarded – undo
30 30
  * @since 13.0.0
31 31
  */
32 32
 interface ISearch {
33
-	/**
34
-	 * @param string $search
35
-	 * @param array $shareTypes
36
-	 * @param bool $lookup
37
-	 * @param int $limit
38
-	 * @param int $offset
39
-	 * @return array with two elements, 1st ISearchResult as array, 2nd a bool indicating whether more result are available
40
-	 * @since 13.0.0
41
-	 */
42
-	public function search($search, array $shareTypes, $lookup, $limit, $offset);
33
+    /**
34
+     * @param string $search
35
+     * @param array $shareTypes
36
+     * @param bool $lookup
37
+     * @param int $limit
38
+     * @param int $offset
39
+     * @return array with two elements, 1st ISearchResult as array, 2nd a bool indicating whether more result are available
40
+     * @since 13.0.0
41
+     */
42
+    public function search($search, array $shareTypes, $lookup, $limit, $offset);
43 43
 
44
-	/**
45
-	 * @param array $pluginInfo with keys 'shareType' containing the name of a corresponding constant in \OCP\Share and
46
-	 * 	'class' with the class name of the plugin
47
-	 * @since 13.0.0
48
-	 */
49
-	public function registerPlugin(array $pluginInfo);
44
+    /**
45
+     * @param array $pluginInfo with keys 'shareType' containing the name of a corresponding constant in \OCP\Share and
46
+     * 	'class' with the class name of the plugin
47
+     * @since 13.0.0
48
+     */
49
+    public function registerPlugin(array $pluginInfo);
50 50
 }
Please login to merge, or discard this patch.