@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $unprocessedBytes = ''; |
38 | 38 | foreach ($this->getContent() as $bytes) { |
39 | - $combinedBytes = $unprocessedBytes . $bytes; |
|
39 | + $combinedBytes = $unprocessedBytes.$bytes; |
|
40 | 40 | $patternStart = strpos($combinedBytes, '['); |
41 | 41 | |
42 | 42 | $dataProcessed = false; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | if (!is_string($data)) { |
71 | 71 | throw new InvalidArgumentException( |
72 | - "Invalid type '" . gettype($data) . "' for argument 'data'." |
|
72 | + "Invalid type '".gettype($data)."' for argument 'data'." |
|
73 | 73 | ); |
74 | 74 | } |
75 | 75 |