Passed
Pull Request — master (#12)
by Donald
02:51 queued 01:11
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/Store.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         if ($this->get($key, $index) != $value) {
44 44
             throw new RuntimeException(
45
-                "Entry '" . $this->keyService->build($key, $index) . "' does not match '" . print_r($value, true) . "'"
45
+                "Entry '".$this->keyService->build($key, $index)."' does not match '".print_r($value, true)."'"
46 46
             );
47 47
         }
48 48
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
         if (!$this->keyValueContains($key, $value, $index)) {
68 68
             throw new RuntimeException(
69
-                "Entry '" . $this->keyService->build($key, $index) . "' does not contain '$value'"
69
+                "Entry '".$this->keyService->build($key, $index)."' does not contain '$value'"
70 70
             );
71 71
         }
72 72
     }
Please login to merge, or discard this patch.
src/Chekote/NounStore/Assert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
         if (!$this->store->keyExists($key, $index)) {
47 47
             throw new OutOfBoundsException(
48
-                "Entry '" . $this->keyService->build($key, $index) . "' was not found in the store."
48
+                "Entry '".$this->keyService->build($key, $index)."' was not found in the store."
49 49
             );
50 50
         }
51 51
 
Please login to merge, or discard this patch.