Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 0089528

Browse files
authored
Update Uri.php
update fields docblock
1 parent aaaf3ec commit 0089528

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Uri.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,47 +50,47 @@ class Uri implements UriInterface
5050
/**
5151
* URI scheme
5252
*
53-
* @var string
53+
* @var string|null
5454
*/
5555
protected $scheme;
5656

5757
/**
5858
* URI userInfo part (usually user:password in HTTP URLs)
5959
*
60-
* @var string
60+
* @var string|null
6161
*/
6262
protected $userInfo;
6363

6464
/**
6565
* URI hostname
6666
*
67-
* @var string
67+
* @var string|null
6868
*/
6969
protected $host;
7070

7171
/**
7272
* URI port
7373
*
74-
* @var int
74+
* @var int|null
7575
*/
7676
protected $port;
7777

7878
/**
7979
* URI path
8080
*
81-
* @var string
81+
* @var string|null
8282
*/
8383
protected $path;
8484

8585
/**
8686
* URI query string
8787
*
88-
* @var string
88+
* @var string|null
8989
*/
9090
protected $query;
9191

9292
/**
93-
* URI fragment
93+
* URI fragment|null
9494
*
9595
* @var string
9696
*/

0 commit comments

Comments
 (0)