Passed
Push — master ( 645109...008e6d )
by Christoph
12:14 queued 12s
created
lib/private/Security/CSRF/TokenStorage/SessionStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 	 */
58 58
 	public function getToken(): string {
59 59
 		$token = $this->session->get('requesttoken');
60
-		if(empty($token)) {
60
+		if (empty($token)) {
61 61
 			throw new \Exception('Session does not contain a requesttoken');
62 62
 		}
63 63
 
Please login to merge, or discard this patch.
lib/private/Security/CSRF/CsrfToken.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,9 +52,9 @@
 block discarded – undo
52 52
 	 * @return string
53 53
 	 */
54 54
 	public function getEncryptedValue(): string {
55
-		if($this->encryptedValue === '') {
55
+		if ($this->encryptedValue === '') {
56 56
 			$sharedSecret = random_bytes(\strlen($this->value));
57
-			$this->encryptedValue = base64_encode($this->value ^ $sharedSecret) . ':' . base64_encode($sharedSecret);
57
+			$this->encryptedValue = base64_encode($this->value ^ $sharedSecret).':'.base64_encode($sharedSecret);
58 58
 		}
59 59
 
60 60
 		return $this->encryptedValue;
Please login to merge, or discard this patch.
lib/private/Security/CSRF/CsrfTokenManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
 	 * @return CsrfToken
55 55
 	 */
56 56
 	public function getToken(): CsrfToken {
57
-		if(!\is_null($this->csrfToken)) {
57
+		if (!\is_null($this->csrfToken)) {
58 58
 			return $this->csrfToken;
59 59
 		}
60 60
 
61
-		if($this->sessionStorage->hasToken()) {
61
+		if ($this->sessionStorage->hasToken()) {
62 62
 			$value = $this->sessionStorage->getToken();
63 63
 		} else {
64 64
 			$value = $this->tokenGenerator->generateToken();
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 * @return bool
97 97
 	 */
98 98
 	public function isTokenValid(CsrfToken $token): bool {
99
-		if(!$this->sessionStorage->hasToken()) {
99
+		if (!$this->sessionStorage->hasToken()) {
100 100
 			return false;
101 101
 		}
102 102
 
Please login to merge, or discard this patch.
lib/private/Security/RateLimiting/Backend/MemoryCache.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 */
58 58
 	private function hash(string $methodIdentifier,
59 59
 						  string $userIdentifier): string {
60
-		return hash('sha512', $methodIdentifier . $userIdentifier);
60
+		return hash('sha512', $methodIdentifier.$userIdentifier);
61 61
 	}
62 62
 
63 63
 	/**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 		}
72 72
 
73 73
 		$cachedAttempts = json_decode($cachedAttempts, true);
74
-		if(\is_array($cachedAttempts)) {
74
+		if (\is_array($cachedAttempts)) {
75 75
 			return $cachedAttempts;
76 76
 		}
77 77
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 		$currentTime = $this->timeFactory->getTime();
92 92
 		/** @var array $existingAttempts */
93 93
 		foreach ($existingAttempts as $attempt) {
94
-			if(($attempt + $seconds) > $currentTime) {
94
+			if (($attempt + $seconds) > $currentTime) {
95 95
 				$count++;
96 96
 			}
97 97
 		}
@@ -111,14 +111,14 @@  discard block
 block discarded – undo
111 111
 
112 112
 		// Unset all attempts older than $period
113 113
 		foreach ($existingAttempts as $key => $attempt) {
114
-			if(($attempt + $period) < $currentTime) {
114
+			if (($attempt + $period) < $currentTime) {
115 115
 				unset($existingAttempts[$key]);
116 116
 			}
117 117
 		}
118 118
 		$existingAttempts = array_values($existingAttempts);
119 119
 
120 120
 		// Store the new attempt
121
-		$existingAttempts[] = (string)$currentTime;
121
+		$existingAttempts[] = (string) $currentTime;
122 122
 		$this->cache->set($identifier, json_encode($existingAttempts));
123 123
 	}
124 124
 }
Please login to merge, or discard this patch.
lib/private/CapabilitiesManager.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	 */
52 52
 	public function getCapabilities(bool $public = false) : array {
53 53
 		$capabilities = [];
54
-		foreach($this->capabilities as $capability) {
54
+		foreach ($this->capabilities as $capability) {
55 55
 			try {
56 56
 				$c = $capability();
57 57
 			} catch (QueryException $e) {
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 			}
65 65
 
66 66
 			if ($c instanceof ICapability) {
67
-				if(!$public || $c instanceof IPublicCapability) {
67
+				if (!$public || $c instanceof IPublicCapability) {
68 68
 					$capabilities = array_replace_recursive($capabilities, $c->getCapabilities());
69 69
 				}
70 70
 			} else {
71
-				throw new \InvalidArgumentException('The given Capability (' . get_class($c) . ') does not implement the ICapability interface');
71
+				throw new \InvalidArgumentException('The given Capability ('.get_class($c).') does not implement the ICapability interface');
72 72
 			}
73 73
 		}
74 74
 
Please login to merge, or discard this patch.
lib/public/SystemTag/SystemTagsEntityEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 */
63 63
 	public function addEntityCollection(string $name, \Closure $entityExistsFunction) {
64 64
 		if (isset($this->collections[$name])) {
65
-			throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"');
65
+			throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"');
66 66
 		}
67 67
 
68 68
 		$this->collections[$name] = $entityExistsFunction;
Please login to merge, or discard this patch.
lib/public/Security/IHasher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,5 +63,5 @@
 block discarded – undo
63 63
 	 * @return bool Whether $hash is a valid hash of $message
64 64
 	 * @since 8.0.0
65 65
 	 */
66
-	public function verify(string $message, string $hash, &$newHash = null): bool ;
66
+	public function verify(string $message, string $hash, &$newHash = null): bool;
67 67
 }
Please login to merge, or discard this patch.
lib/public/User/Backend/ABackend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,6 +67,6 @@
 block discarded – undo
67 67
 			$implements |= Backend::COUNT_USERS;
68 68
 		}
69 69
 
70
-		return (bool)($actions & $implements);
70
+		return (bool) ($actions & $implements);
71 71
 	}
72 72
 }
Please login to merge, or discard this patch.
lib/public/Group/Backend/ABackend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,6 +62,6 @@
 block discarded – undo
62 62
 			$implements |= GroupInterface::REMOVE_FROM_GOUP;
63 63
 		}
64 64
 
65
-		return (bool)($actions & $implements);
65
+		return (bool) ($actions & $implements);
66 66
 	}
67 67
 }
Please login to merge, or discard this patch.