File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1818 - operating-system : ' ubuntu-latest'
1919 php-version : ' 8.3'
2020
21+ - operating-system : ' ubuntu-latest'
22+ php-version : ' 8.4'
23+
2124 - operating-system : ' windows-latest'
2225 php-version : ' 8.3'
2326 job-description : ' on Windows'
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ final public function getUser(): ?string
101101 return $ this ->user ;
102102 }
103103
104- final public function withUser (string $ user = null ): static
104+ final public function withUser (? string $ user = null ): static
105105 {
106106 $ new = clone $ this ;
107107 $ new ->user = $ user ;
@@ -113,7 +113,7 @@ final public function getPassword(): ?string
113113 return $ this ->password ;
114114 }
115115
116- final public function withPassword (string $ password = null ): static
116+ final public function withPassword (? string $ password = null ): static
117117 {
118118 $ new = clone $ this ;
119119 $ new ->password = $ password ;
@@ -125,7 +125,7 @@ final public function getDatabase(): ?string
125125 return $ this ->database ;
126126 }
127127
128- final public function withDatabase (string $ database = null ): static
128+ final public function withDatabase (? string $ database = null ): static
129129 {
130130 $ new = clone $ this ;
131131 $ new ->database = $ database ;
You can’t perform that action at this time.
0 commit comments