@@ -89,7 +89,7 @@ |
||
89 | 89 | * @return IEntry[] |
90 | 90 | */ |
91 | 91 | private function sortEntries(array $entries) { |
92 | - usort($entries, function (IEntry $entryA, IEntry $entryB) { |
|
92 | + usort($entries, function(IEntry $entryA, IEntry $entryB) { |
|
93 | 93 | return strcasecmp($entryA->getFullName(), $entryB->getFullName()); |
94 | 94 | }); |
95 | 95 | return $entries; |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * sort the actions by priority and name |
116 | 116 | */ |
117 | 117 | private function sortActions() { |
118 | - usort($this->actions, function (IAction $action1, IAction $action2) { |
|
118 | + usort($this->actions, function(IAction $action1, IAction $action2) { |
|
119 | 119 | $prio1 = $action1->getPriority(); |
120 | 120 | $prio2 = $action2->getPriority(); |
121 | 121 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function jsonSerialize() { |
154 | 154 | $topAction = !empty($this->actions) ? $this->actions[0]->jsonSerialize() : null; |
155 | - $otherActions = array_map(function (IAction $action) { |
|
155 | + $otherActions = array_map(function(IAction $action) { |
|
156 | 156 | return $action->jsonSerialize(); |
157 | 157 | }, array_slice($this->actions, 1)); |
158 | 158 |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return string[] |
96 | 96 | */ |
97 | 97 | private function getAppProviderClasses(IUser $user) { |
98 | - return array_reduce($this->appManager->getEnabledAppsForUser($user), function ($all, $appId) { |
|
98 | + return array_reduce($this->appManager->getEnabledAppsForUser($user), function($all, $appId) { |
|
99 | 99 | $info = $this->appManager->getAppInfo($appId); |
100 | 100 | |
101 | 101 | if (!isset($info['contactsmenu']) || !isset($info['contactsmenu'])) { |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | return $all; |
104 | 104 | } |
105 | 105 | |
106 | - $providers = array_reduce($info['contactsmenu'], function ($all, $provider) { |
|
106 | + $providers = array_reduce($info['contactsmenu'], function($all, $provider) { |
|
107 | 107 | return array_merge($all, [$provider]); |
108 | 108 | }, []); |
109 | 109 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @param callable $callback |
36 | 36 | */ |
37 | 37 | public function listen($scope, $method, callable $callback) { |
38 | - $eventName = $scope . '::' . $method; |
|
38 | + $eventName = $scope.'::'.$method; |
|
39 | 39 | if (!isset($this->listeners[$eventName])) { |
40 | 40 | $this->listeners[$eventName] = []; |
41 | 41 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $names = []; |
54 | 54 | $allNames = array_keys($this->listeners); |
55 | 55 | if ($scope and $method) { |
56 | - $name = $scope . '::' . $method; |
|
56 | + $name = $scope.'::'.$method; |
|
57 | 57 | if (isset($this->listeners[$name])) { |
58 | 58 | $names[] = $name; |
59 | 59 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @param array $arguments optional |
94 | 94 | */ |
95 | 95 | protected function emit($scope, $method, array $arguments = []) { |
96 | - $eventName = $scope . '::' . $method; |
|
96 | + $eventName = $scope.'::'.$method; |
|
97 | 97 | if (isset($this->listeners[$eventName])) { |
98 | 98 | foreach ($this->listeners[$eventName] as $callback) { |
99 | 99 | call_user_func_array($callback, $arguments); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $this->doFind($resource); |
76 | 76 | } catch (ResourceNotFoundException $e) { |
77 | 77 | $resourceApp = substr($resource, 0, strpos($resource, '/')); |
78 | - $this->logger->debug('Could not find resource file "' . $e->getResourcePath() . '"', ['app' => $resourceApp]); |
|
78 | + $this->logger->debug('Could not find resource file "'.$e->getResourcePath().'"', ['app' => $resourceApp]); |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | if (!empty($this->theme)) { |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $this->doFindTheme($resource); |
85 | 85 | } catch (ResourceNotFoundException $e) { |
86 | 86 | $resourceApp = substr($resource, 0, strpos($resource, '/')); |
87 | - $this->logger->debug('Could not find resource file in theme "' . $e->getResourcePath() . '"', ['app' => $resourceApp]); |
|
87 | + $this->logger->debug('Could not find resource file in theme "'.$e->getResourcePath().'"', ['app' => $resourceApp]); |
|
88 | 88 | } |
89 | 89 | } |
90 | 90 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | } |
159 | 159 | $this->resources[] = [$root, $webRoot, $file]; |
160 | 160 | |
161 | - if ($throw && !is_file($root . '/' . $file)) { |
|
161 | + if ($throw && !is_file($root.'/'.$file)) { |
|
162 | 162 | throw new ResourceNotFoundException($file, $webRoot); |
163 | 163 | } |
164 | 164 | } |
@@ -117,7 +117,7 @@ |
||
117 | 117 | if (array_key_exists($key, $this->vars)) { |
118 | 118 | $this->vars[$key][] = $value; |
119 | 119 | } else { |
120 | - $this->vars[$key] = [ $value ]; |
|
120 | + $this->vars[$key] = [$value]; |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $results = []; |
62 | 62 | foreach ($this->providers as $provider) { |
63 | 63 | /** @var $provider Provider */ |
64 | - if (! $provider->providesResultsFor($inApps)) { |
|
64 | + if (!$provider->providesResultsFor($inApps)) { |
|
65 | 65 | continue; |
66 | 66 | } |
67 | 67 | if ($provider instanceof PagedProvider) { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public function removeProvider($provider) { |
97 | 97 | $this->registeredProviders = array_filter( |
98 | 98 | $this->registeredProviders, |
99 | - function ($element) use ($provider) { |
|
99 | + function($element) use ($provider) { |
|
100 | 100 | return ($element['class'] != $provider); |
101 | 101 | } |
102 | 102 | ); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * Create instances of all the registered search providers |
118 | 118 | */ |
119 | 119 | private function initProviders() { |
120 | - if (! empty($this->providers)) { |
|
120 | + if (!empty($this->providers)) { |
|
121 | 121 | return; |
122 | 122 | } |
123 | 123 | foreach ($this->registeredProviders as $provider) { |
@@ -65,8 +65,8 @@ |
||
65 | 65 | |
66 | 66 | $this->commonName = isset($info['subject']['CN']) ? $info['subject']['CN'] : null; |
67 | 67 | $this->organization = isset($info['subject']['O']) ? $info['subject']['O'] : null; |
68 | - $this->issueDate = new \DateTime('@' . $info['validFrom_time_t'], $gmt); |
|
69 | - $this->expireDate = new \DateTime('@' . $info['validTo_time_t'], $gmt); |
|
68 | + $this->issueDate = new \DateTime('@'.$info['validFrom_time_t'], $gmt); |
|
69 | + $this->expireDate = new \DateTime('@'.$info['validTo_time_t'], $gmt); |
|
70 | 70 | $this->issuerName = isset($info['issuer']['CN']) ? $info['issuer']['CN'] : null; |
71 | 71 | $this->issuerOrganization = isset($info['issuer']['O']) ? $info['issuer']['O'] : null; |
72 | 72 | } |
@@ -89,7 +89,7 @@ |
||
89 | 89 | $user = $this->userManager->get($userId); |
90 | 90 | if ($user !== null) { |
91 | 91 | $key = $this->keyManager->getKey($user); |
92 | - return (bool)openssl_verify( |
|
92 | + return (bool) openssl_verify( |
|
93 | 93 | json_encode($data['message']), |
94 | 94 | base64_decode($data['signature']), |
95 | 95 | $key->getPublic(), |