@@ -6,5 +6,5 @@ |
||
| 6 | 6 | $baseDir = $vendorDir; |
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | - 'OCA\\WorkflowEngine\\' => array($baseDir . '/../lib'), |
|
| 9 | + 'OCA\\WorkflowEngine\\' => array($baseDir.'/../lib'), |
|
| 10 | 10 | ); |
@@ -2,6 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | // autoload.php @generated by Composer |
| 4 | 4 | |
| 5 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
| 5 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
| 6 | 6 | |
| 7 | 7 | return ComposerAutoloaderInitWorkflowEngine::getLoader(); |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | $tokens = $this->tokenProvider->getTokenByUser($user->getUID()); |
| 86 | 86 | |
| 87 | 87 | /** @var IWipeableToken[] $wipeable */ |
| 88 | - $wipeable = array_filter($tokens, function (IToken $token) { |
|
| 88 | + $wipeable = array_filter($tokens, function(IToken $token) { |
|
| 89 | 89 | return $token instanceof IWipeableToken; |
| 90 | 90 | }); |
| 91 | 91 | |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | $dbToken = $e->getToken(); |
| 123 | 123 | |
| 124 | - $this->logger->info("user " . $dbToken->getUID() . " started a remote wipe"); |
|
| 124 | + $this->logger->info("user ".$dbToken->getUID()." started a remote wipe"); |
|
| 125 | 125 | |
| 126 | 126 | $this->eventDispatcher->dispatch(RemoteWipeStarted::class, new RemoteWipeStarted($dbToken)); |
| 127 | 127 | |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | $this->tokenProvider->invalidateToken($token); |
| 151 | 151 | |
| 152 | - $this->logger->info("user " . $dbToken->getUID() . " finished a remote wipe"); |
|
| 152 | + $this->logger->info("user ".$dbToken->getUID()." finished a remote wipe"); |
|
| 153 | 153 | $this->eventDispatcher->dispatch(RemoteWipeFinished::class, new RemoteWipeFinished($dbToken)); |
| 154 | 154 | |
| 155 | 155 | return true; |
@@ -61,5 +61,5 @@ |
||
| 61 | 61 | * @return string|null - The value stored for the key, null if no value stored |
| 62 | 62 | * @since 17.0.0 |
| 63 | 63 | */ |
| 64 | - public function getMetadataForKey(string $key):?string; |
|
| 64 | + public function getMetadataForKey(string $key): ?string; |
|
| 65 | 65 | } |
@@ -60,10 +60,10 @@ |
||
| 60 | 60 | */ |
| 61 | 61 | public function mergePolicies(FeaturePolicy $defaultPolicy, |
| 62 | 62 | EmptyFeaturePolicy $originalPolicy): FeaturePolicy { |
| 63 | - foreach ((object)(array)$originalPolicy as $name => $value) { |
|
| 64 | - $setter = 'set' . ucfirst($name); |
|
| 63 | + foreach ((object) (array) $originalPolicy as $name => $value) { |
|
| 64 | + $setter = 'set'.ucfirst($name); |
|
| 65 | 65 | if (\is_array($value)) { |
| 66 | - $getter = 'get' . ucfirst($name); |
|
| 66 | + $getter = 'get'.ucfirst($name); |
|
| 67 | 67 | $currentValues = \is_array($defaultPolicy->$getter()) ? $defaultPolicy->$getter() : []; |
| 68 | 68 | $defaultPolicy->$setter(\array_values(\array_unique(\array_merge($currentValues, $value)))); |
| 69 | 69 | } elseif (\is_bool($value)) { |
@@ -139,42 +139,42 @@ |
||
| 139 | 139 | if (empty($this->autoplayDomains)) { |
| 140 | 140 | $policy .= "autoplay 'none';"; |
| 141 | 141 | } else { |
| 142 | - $policy .= 'autoplay ' . implode(' ', $this->autoplayDomains); |
|
| 142 | + $policy .= 'autoplay '.implode(' ', $this->autoplayDomains); |
|
| 143 | 143 | $policy .= ';'; |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | if (empty($this->cameraDomains)) { |
| 147 | 147 | $policy .= "camera 'none';"; |
| 148 | 148 | } else { |
| 149 | - $policy .= 'camera ' . implode(' ', $this->cameraDomains); |
|
| 149 | + $policy .= 'camera '.implode(' ', $this->cameraDomains); |
|
| 150 | 150 | $policy .= ';'; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | if (empty($this->fullscreenDomains)) { |
| 154 | 154 | $policy .= "fullscreen 'none';"; |
| 155 | 155 | } else { |
| 156 | - $policy .= 'fullscreen ' . implode(' ', $this->fullscreenDomains); |
|
| 156 | + $policy .= 'fullscreen '.implode(' ', $this->fullscreenDomains); |
|
| 157 | 157 | $policy .= ';'; |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | if (empty($this->geolocationDomains)) { |
| 161 | 161 | $policy .= "geolocation 'none';"; |
| 162 | 162 | } else { |
| 163 | - $policy .= 'geolocation ' . implode(' ', $this->geolocationDomains); |
|
| 163 | + $policy .= 'geolocation '.implode(' ', $this->geolocationDomains); |
|
| 164 | 164 | $policy .= ';'; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | if (empty($this->microphoneDomains)) { |
| 168 | 168 | $policy .= "microphone 'none';"; |
| 169 | 169 | } else { |
| 170 | - $policy .= 'microphone ' . implode(' ', $this->microphoneDomains); |
|
| 170 | + $policy .= 'microphone '.implode(' ', $this->microphoneDomains); |
|
| 171 | 171 | $policy .= ';'; |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | if (empty($this->paymentDomains)) { |
| 175 | 175 | $policy .= "payment 'none';"; |
| 176 | 176 | } else { |
| 177 | - $policy .= 'payment ' . implode(' ', $this->paymentDomains); |
|
| 177 | + $policy .= 'payment '.implode(' ', $this->paymentDomains); |
|
| 178 | 178 | $policy .= ';'; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | */ |
| 43 | 43 | public function changeSchema(IOutput $output, |
| 44 | 44 | \Closure $schemaClosure, |
| 45 | - array $options):?ISchemaWrapper { |
|
| 45 | + array $options): ?ISchemaWrapper { |
|
| 46 | 46 | /** @var ISchemaWrapper $schema */ |
| 47 | 47 | $schema = $schemaClosure(); |
| 48 | 48 | |
@@ -36,11 +36,11 @@ |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function getMimeType(): string { |
| 39 | - return (string)$this->providerV1->getMimeType(); |
|
| 39 | + return (string) $this->providerV1->getMimeType(); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | public function isAvailable(FileInfo $file): bool { |
| 43 | - return (bool)$this->providerV1->isAvailable($file); |
|
| 43 | + return (bool) $this->providerV1->isAvailable($file); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage { |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | string $ip): void { |
| 81 | 81 | $ipSubnet = (new IpAddress($ip))->getSubnet(); |
| 82 | 82 | |
| 83 | - $anonHashIdentifier = hash('sha512', 'anon::' . $identifier . $ipSubnet); |
|
| 83 | + $anonHashIdentifier = hash('sha512', 'anon::'.$identifier.$ipSubnet); |
|
| 84 | 84 | $this->register($identifier, $anonHashIdentifier, $anonPeriod, $anonLimit); |
| 85 | 85 | } |
| 86 | 86 | |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | int $userLimit, |
| 98 | 98 | int $userPeriod, |
| 99 | 99 | IUser $user): void { |
| 100 | - $userHashIdentifier = hash('sha512', 'user::' . $identifier . $user->getUID()); |
|
| 100 | + $userHashIdentifier = hash('sha512', 'user::'.$identifier.$user->getUID()); |
|
| 101 | 101 | $this->register($identifier, $userHashIdentifier, $userPeriod, $userLimit); |
| 102 | 102 | } |
| 103 | 103 | } |