Passed
Pull Request — master (#12)
by Donald
09:13 queued 50s
created
src/Chekote/NounStore/Key.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
 
192 192
         $nth = $index + 1;
193 193
 
194
-        return $nth . $this->getOrdinal($nth) . ' ' . $key;
194
+        return $nth.$this->getOrdinal($nth).' '.$key;
195 195
     }
196 196
 
197 197
     /**
Please login to merge, or discard this patch.
src/Chekote/NounStore/Assert.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         if (!$this->store->keyExists($key, $index)) {
48 48
             throw new OutOfBoundsException(
49
-                "Entry '" . $this->keyService->build($key, $index) . "' was not found in the store."
49
+                "Entry '".$this->keyService->build($key, $index)."' was not found in the store."
50 50
             );
51 51
         }
52 52
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         if (!$this->store->keyValueContains($key, $value, $index)) {
74 74
             throw new RuntimeException(
75
-                "Entry '" . $this->keyService->build($key, $index) . "' does not contain '$value'"
75
+                "Entry '".$this->keyService->build($key, $index)."' does not contain '$value'"
76 76
             );
77 77
         }
78 78
     }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         if ($this->store->get($key, $index) != $value) {
98 98
             throw new RuntimeException(
99
-                "Entry '" . $this->keyService->build($key, $index) . "' does not match '" . print_r($value, true) . "'"
99
+                "Entry '".$this->keyService->build($key, $index)."' does not match '".print_r($value, true)."'"
100 100
             );
101 101
         }
102 102
     }
Please login to merge, or discard this patch.