@@ -21,13 +21,13 @@ |
||
| 21 | 21 | abstract class Message implements MessageInterface |
| 22 | 22 | { |
| 23 | 23 | /** |
| 24 | - * @var string Protocol version. |
|
| 25 | - */ |
|
| 24 | + * @var string Protocol version. |
|
| 25 | + */ |
|
| 26 | 26 | protected $protocolVersion = '1.1'; |
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | - * @var array Allowed protocol versions. |
|
| 30 | - */ |
|
| 29 | + * @var array Allowed protocol versions. |
|
| 30 | + */ |
|
| 31 | 31 | protected static $allowedProtocolVersions = [ |
| 32 | 32 | '1.0' => true, |
| 33 | 33 | '1.1' => true, |
@@ -270,10 +270,10 @@ |
||
| 270 | 270 | |
| 271 | 271 | return $this->createUriString( |
| 272 | 272 | ($scheme !== '') ? $scheme.'://' : '', |
| 273 | - $this->getAuthority(), |
|
| 274 | - $this->getPath(), |
|
| 275 | - ($query !== '') ? '?'.$query : '', |
|
| 276 | - ($fragment !== '') ? '#'.$fragment : '' |
|
| 273 | + $this->getAuthority(), |
|
| 274 | + $this->getPath(), |
|
| 275 | + ($query !== '') ? '?'.$query : '', |
|
| 276 | + ($fragment !== '') ? '#'.$fragment : '' |
|
| 277 | 277 | ); |
| 278 | 278 | } |
| 279 | 279 | } |