Skip to content

Commit 986058a

Browse files
tpetrygithub-actions[bot]
authored andcommitted
Fix styling
1 parent 76e8ca9 commit 986058a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Helpers/ApiHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ApiHelper
1919

2020
public function __construct(
2121
private ?string $domain = 'https://explainmysql.com',
22-
Client $client = null,
22+
?Client $client = null,
2323
) {
2424
$this->client = $client ?? new Client();
2525
}

src/Values/QueryMetrics.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public function __construct(
5555
string $version,
5656
array $explainTraditional,
5757
string $explainJson,
58-
string $explainTree = null,
59-
array $warnings = null,
58+
?string $explainTree = null,
59+
?array $warnings = null,
6060
) {
6161
$this->query = $query;
6262
$this->version = $version;

0 commit comments

Comments
 (0)