Passed
Pull Request — master (#12)
by Donald
02:34
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   +2 added lines, -2 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
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
         if ($this->keyExists($key, $index) != $value) {
73 73
             throw new RuntimeException(
74
-                "Entry '" . $this->keyService->build($key, $index) . "' does not match '" . print_r($value, true) . "'"
74
+                "Entry '".$this->keyService->build($key, $index)."' does not match '".print_r($value, true)."'"
75 75
             );
76 76
         }
77 77
     }
Please login to merge, or discard this patch.
src/Chekote/NounStore/Store.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
         if (!$this->keyValueContains($key, $value, $index)) {
44 44
             throw new RuntimeException(
45
-                "Entry '" . $this->keyService->build($key, $index) . "' does not contain '$value'"
45
+                "Entry '".$this->keyService->build($key, $index)."' does not contain '$value'"
46 46
             );
47 47
         }
48 48
     }
Please login to merge, or discard this patch.