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