Passed
Pull Request — master (#43)
by Buster
09:23
created
src/Cache/Psr6Cache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             return $cacheItemValue;
72 72
         }
73 73
 
74
-        if (! $this->reloadOnMiss) {
74
+        if (!$this->reloadOnMiss) {
75 75
             return $msgid;
76 76
         }
77 77
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     public function setAll(array $translations): void
113 113
     {
114
-        $keys = array_map(function (string $msgid): string {
114
+        $keys = array_map(function(string $msgid): string {
115 115
             return $this->getKey($msgid);
116 116
         }, array_keys($translations));
117 117
         $translations = array_combine($keys, $translations);
Please login to merge, or discard this patch.