@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | foreach($requiredKeys as $key) |
| 28 | 28 | { |
| 29 | - if(! isset($headers[$key])) |
|
| 29 | + if( ! isset($headers[$key])) |
|
| 30 | 30 | { |
| 31 | 31 | throw new \InvalidArgumentException("Missing $key in chunked message metadata"); |
| 32 | 32 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | { |
| 29 | 29 | if(! isset($headers[$key])) |
| 30 | 30 | { |
| 31 | - throw new \InvalidArgumentException("Missing $key in chunked message metadata"); |
|
| 31 | + throw new \InvalidArgumentException("missing $key in chunked message metadata"); |
|
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | |
| 23 | 23 | foreach($requiredKeys as $key) |
| 24 | 24 | { |
| 25 | - if(! isset($headers[$key])) |
|
| 25 | + if( ! isset($headers[$key])) |
|
| 26 | 26 | { |
| 27 | 27 | throw new \InvalidArgumentException("Missing $key in chunk metadata"); |
| 28 | 28 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | { |
| 25 | 25 | if(! isset($headers[$key])) |
| 26 | 26 | { |
| 27 | - throw new \InvalidArgumentException("Missing $key in chunk metadata"); |
|
| 27 | + throw new \InvalidArgumentException("missing $key in chunk metadata"); |
|
| 28 | 28 | } |
| 29 | 29 | } |
| 30 | 30 | |