Passed
Pull Request — master (#12)
by Donald
05:04
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
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
         if (!$this->store->keyValueContains($key, $value, $index)) {
75 75
             throw new RuntimeException(
76
-                "Entry '" . $this->keyService->build($key, $index) . "' does not contain '$value'"
76
+                "Entry '".$this->keyService->build($key, $index)."' does not contain '$value'"
77 77
             );
78 78
         }
79 79
     }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
         if ($this->keyExists($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.