File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,18 @@ public function getScheme(): ?string
18
18
public function getRawScheme (): ?string
19
19
{
20
20
}
21
+ public function withScheme (?string $ scheme ): static
22
+ {
23
+ }
21
24
public function getUserInfo (): ?string
22
25
{
23
26
}
24
27
public function getRawUserInfo (): ?string
25
28
{
26
29
}
30
+ public function withUserInfo (#[\SensitiveParameter] ?string $ userinfo ): static
31
+ {
32
+ }
27
33
public function getUsername (): ?string
28
34
{
29
35
}
@@ -42,27 +48,42 @@ public function getHost(): ?string
42
48
public function getRawHost (): ?string
43
49
{
44
50
}
51
+ public function withHost (?string $ host ): static
52
+ {
53
+ }
45
54
public function getPort (): ?int
46
55
{
47
56
}
57
+ public function withPort (?int $ port ): static
58
+ {
59
+ }
48
60
public function getPath (): string
49
61
{
50
62
}
51
63
public function getRawPath (): string
52
64
{
53
65
}
66
+ public function withPath (string $ path ): static
67
+ {
68
+ }
54
69
public function getQuery (): ?string
55
70
{
56
71
}
57
72
public function getRawQuery (): ?string
58
73
{
59
74
}
75
+ public function withQuery (?string $ query ): static
76
+ {
77
+ }
60
78
public function getFragment (): ?string
61
79
{
62
80
}
63
81
public function getRawFragment (): ?string
64
82
{
65
83
}
84
+ public function withFragment (?string $ fragment ): static
85
+ {
86
+ }
66
87
public function equals (\Uri \Rfc3986 \Uri $ uri , \Uri \UriComparisonMode $ comparisonMode = \Uri \UriComparisonMode::ExcludeFragment): bool
67
88
{
68
89
}
Original file line number Diff line number Diff line change @@ -40,34 +40,39 @@ public function getAsciiHost(): ?string
40
40
public function getUnicodeHost (): ?string
41
41
{
42
42
}
43
+ /** @implementation-alias Uri\Rfc3986\Uri::withHost */
43
44
public function withHost (?string $ host ): static
44
45
{
45
46
}
46
47
/** @implementation-alias Uri\Rfc3986\Uri::getPort */
47
48
public function getPort (): ?int
48
49
{
49
50
}
51
+ /** @implementation-alias Uri\Rfc3986\Uri::withPort */
50
52
public function withPort (?int $ port ): static
51
53
{
52
54
}
53
55
/** @implementation-alias Uri\Rfc3986\Uri::getPath */
54
56
public function getPath (): string
55
57
{
56
58
}
59
+ /** @implementation-alias Uri\Rfc3986\Uri::withPath */
57
60
public function withPath (string $ path ): static
58
61
{
59
62
}
60
63
/** @implementation-alias Uri\Rfc3986\Uri::getQuery */
61
64
public function getQuery (): ?string
62
65
{
63
66
}
67
+ /** @implementation-alias Uri\Rfc3986\Uri::withQuery */
64
68
public function withQuery (?string $ query ): static
65
69
{
66
70
}
67
71
/** @implementation-alias Uri\Rfc3986\Uri::getFragment */
68
72
public function getFragment (): ?string
69
73
{
70
74
}
75
+ /** @implementation-alias Uri\Rfc3986\Uri::withFragment */
71
76
public function withFragment (?string $ fragment ): static
72
77
{
73
78
}
You can’t perform that action at this time.
0 commit comments