File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -100,26 +100,30 @@ public function getScheme(): string
100
100
}
101
101
102
102
103
+ /** @deprecated */
103
104
public function setUser (string $ user ): static
104
105
{
105
106
$ this ->user = $ user ;
106
107
return $ this ;
107
108
}
108
109
109
110
111
+ /** @deprecated */
110
112
public function getUser (): string
111
113
{
112
114
return $ this ->user ;
113
115
}
114
116
115
117
118
+ /** @deprecated */
116
119
public function setPassword (string $ password ): static
117
120
{
118
121
$ this ->password = $ password ;
119
122
return $ this ;
120
123
}
121
124
122
125
126
+ /** @deprecated */
123
127
public function getPassword (): string
124
128
{
125
129
return $ this ->password ;
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ public function getScheme(): string
78
78
}
79
79
80
80
81
+ /** @deprecated */
81
82
public function withUser (string $ user ): static
82
83
{
83
84
$ dolly = clone $ this ;
@@ -87,12 +88,14 @@ public function withUser(string $user): static
87
88
}
88
89
89
90
91
+ /** @deprecated */
90
92
public function getUser (): string
91
93
{
92
94
return $ this ->user ;
93
95
}
94
96
95
97
98
+ /** @deprecated */
96
99
public function withPassword (string $ password ): static
97
100
{
98
101
$ dolly = clone $ this ;
@@ -102,12 +105,14 @@ public function withPassword(string $password): static
102
105
}
103
106
104
107
108
+ /** @deprecated */
105
109
public function getPassword (): string
106
110
{
107
111
return $ this ->password ;
108
112
}
109
113
110
114
115
+ /** @deprecated */
111
116
public function withoutUserInfo (): static
112
117
{
113
118
$ dolly = clone $ this ;
You can’t perform that action at this time.
0 commit comments