@@ -191,7 +191,7 @@ |
||
| 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 | /** |
@@ -46,7 +46,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -42,7 +42,7 @@ |
||
| 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 | } |