@@ -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 | |
@@ -73,7 +73,7 @@ discard block  | 
                                                    ||
| 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  | 
                                                    ||
| 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 | }  |