Skip to content

Commit 74a390a

Browse files
authoredMar 12, 2025··
Merge pull request #10 from plesk/php-8.4
Implicitly marking parameter as nullable is deprecated
2 parents c67bf71 + 7f4f9b6 commit 74a390a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+104
-104
lines changed
 

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"php": ">=8.2",
1919
"symfony/filesystem": "^6.3",
2020
"symfony/process": "^6.3",
21-
"php-http/client-common": "2.5",
21+
"php-http/client-common": "^2.5",
2222
"php-http/message": "^1.16",
2323
"guzzlehttp/psr7": "^2.6",
2424
"symfony/serializer": "^6.3",

‎generated/Model/BuildInfo.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function getErrorDetail()
106106
*
107107
* @return self
108108
*/
109-
public function setErrorDetail(ErrorDetail $errorDetail = null)
109+
public function setErrorDetail(?ErrorDetail $errorDetail = null)
110110
{
111111
$this->errorDetail = $errorDetail;
112112

@@ -166,7 +166,7 @@ public function getProgressDetail()
166166
*
167167
* @return self
168168
*/
169-
public function setProgressDetail(ProgressDetail $progressDetail = null)
169+
public function setProgressDetail(?ProgressDetail $progressDetail = null)
170170
{
171171
$this->progressDetail = $progressDetail;
172172

0 commit comments

Comments
 (0)
Please sign in to comment.