Completed
Branch circles-integration (6065df)
by René
08:09
created
lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	 */
41 41
 	public function registerNavigationEntry() {
42 42
 		$container = $this->getContainer();
43
-		$container->query('OCP\INavigationManager')->add(function () use ($container) {
43
+		$container->query('OCP\INavigationManager')->add(function() use ($container) {
44 44
 			$urlGenerator = $container->query('OCP\IURLGenerator');
45 45
 			$l10n = $container->query('OCP\IL10N');
46 46
 			return [
Please login to merge, or discard this patch.
lib/Model/Acl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 	 */
239 239
 	public function getGroupShare(): bool {
240 240
 		return count(
241
-			array_filter($this->shareMapper->findByPoll($this->getPollId()), function ($item) {
241
+			array_filter($this->shareMapper->findByPoll($this->getPollId()), function($item) {
242 242
 				if ($item->getType() === Share::TYPE_GROUP && $this->groupManager->isInGroup($this->getUserId(), $item->getUserId())) {
243 243
 					return true;
244 244
 				}
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
 	 */
263 263
 	public function getPersonalShare(): bool {
264 264
 		return count(
265
-			array_filter($this->shareMapper->findByPoll($this->getPollId()), function ($item) {
265
+			array_filter($this->shareMapper->findByPoll($this->getPollId()), function($item) {
266 266
 				if (
267 267
 					($item->getType() === Share::TYPE_USER
268 268
 						|| $item->getType() === Share::TYPE_EXTERNAL
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 	 */
284 284
 	public function getPublicShare(): bool {
285 285
 		return count(
286
-			array_filter($this->shareMapper->findByPoll($this->getPollId()), function ($item) {
286
+			array_filter($this->shareMapper->findByPoll($this->getPollId()), function($item) {
287 287
 				if ($item->getType() === Share::TYPE_PUBLIC && $item->getToken() === $this->getToken()) {
288 288
 					return true;
289 289
 				}
Please login to merge, or discard this patch.