@@ -119,7 +119,7 @@ |
||
| 119 | 119 | $gridData->setDataRowSourceId('id'); |
| 120 | 120 | $gridData->addDataRowSource('name'); |
| 121 | 121 | $gridData->addDataRowSource('description'); |
| 122 | - $gridData->addDataRowSource('isGlobal', false, function ($value) { |
|
| 122 | + $gridData->addDataRowSource('isGlobal', false, function($value) { |
|
| 123 | 123 | return $value ? __('YES') : __('NO'); |
| 124 | 124 | }); |
| 125 | 125 | $gridData->setData($this->queryResult); |
@@ -139,7 +139,7 @@ |
||
| 139 | 139 | AccountSearchItem::$showTags = $userPreferences->isShowAccountSearchFilters(); |
| 140 | 140 | |
| 141 | 141 | if (AccountSearchItem::$wikiEnabled) { |
| 142 | - $wikiFilter = array_map(function ($value) { |
|
| 142 | + $wikiFilter = array_map(function($value) { |
|
| 143 | 143 | return preg_quote($value, '/'); |
| 144 | 144 | }, $this->configData->getWikiFilter()); |
| 145 | 145 | |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('No changes')); |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - return $this->saveConfig($configData, $this->config, function () use ($eventMessage) { |
|
| 100 | + return $this->saveConfig($configData, $this->config, function() use ($eventMessage) { |
|
| 101 | 101 | $this->eventDispatcher->notifyEvent('save.config.ldap', new Event($this, $eventMessage)); |
| 102 | 102 | }); |
| 103 | 103 | } catch (\Exception $e) { |
@@ -190,7 +190,7 @@ |
||
| 190 | 190 | { |
| 191 | 191 | $path = $this->path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME; |
| 192 | 192 | |
| 193 | - array_map(function ($file) { |
|
| 193 | + array_map(function($file) { |
|
| 194 | 194 | return @unlink($file); |
| 195 | 195 | }, array_merge( |
| 196 | 196 | glob($path . '_db-*'), |
@@ -239,7 +239,7 @@ |
||
| 239 | 239 | $this->session, |
| 240 | 240 | $this->request, |
| 241 | 241 | $this->configData, |
| 242 | - function ($redirect) { |
|
| 242 | + function($redirect) { |
|
| 243 | 243 | $this->router->response() |
| 244 | 244 | ->redirect($redirect) |
| 245 | 245 | ->send(true); |
@@ -175,7 +175,7 @@ |
||
| 175 | 175 | $template->addTemplate('accounts'); |
| 176 | 176 | $template->assign('gdIsAvailable', $this->extensionChecker->checkGdAvailable()); |
| 177 | 177 | |
| 178 | - $mimeTypesAvailable = array_map(function ($value) { |
|
| 178 | + $mimeTypesAvailable = array_map(function($value) { |
|
| 179 | 179 | return $value['type']; |
| 180 | 180 | }, $this->dic->get(MimeTypes::class)->getMimeTypes()); |
| 181 | 181 | |
@@ -239,7 +239,7 @@ |
||
| 239 | 239 | $this->session, |
| 240 | 240 | $this->request, |
| 241 | 241 | $this->configData, |
| 242 | - function ($redirect) { |
|
| 242 | + function($redirect) { |
|
| 243 | 243 | $this->router->response() |
| 244 | 244 | ->redirect($redirect) |
| 245 | 245 | ->send(true); |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | $eventMessage->addDescription(__u('Wiki disabled')); |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - return $this->saveConfig($configData, $this->config, function () use ($eventMessage) { |
|
| 81 | + return $this->saveConfig($configData, $this->config, function() use ($eventMessage) { |
|
| 82 | 82 | $this->eventDispatcher->notifyEvent('save.config.wiki', new Event($this, $eventMessage)); |
| 83 | 83 | }); |
| 84 | 84 | } |
@@ -82,7 +82,7 @@ |
||
| 82 | 82 | $eventMessage->addDescription(__u('DokuWiki disabled')); |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - return $this->saveConfig($configData, $this->config, function () use ($eventMessage) { |
|
| 85 | + return $this->saveConfig($configData, $this->config, function() use ($eventMessage) { |
|
| 86 | 86 | $this->eventDispatcher->notifyEvent('save.config.dokuwiki', new Event($this, $eventMessage)); |
| 87 | 87 | }); |
| 88 | 88 | } |