Skip to content

Commit b31b007

Browse files
cklei-carlygithub-actions[bot]
authored andcommitted
Fix styling
1 parent 3f15661 commit b31b007

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Licensing/LicenseManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ public function canUpgrade(): bool
3434
if (empty($licenseKey)) {
3535
return false; // No license key configured
3636
}
37-
37+
3838
try {
3939

4040
$this->verify();
41-
41+
4242
$cacheKey = $this->buildCacheKey();
4343

4444
if (($verificationResult = $this->cache()->get($cacheKey)) && $verificationResult instanceof LicenseVerificationResult) {

src/Licensing/LicenseVerificationResult.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(
1616
/** @var ?array */
1717
protected $data = null
1818
) {
19-
if (!is_array($data)) {
19+
if (! is_array($data)) {
2020
unset($this->data);
2121
}
2222
}
@@ -37,7 +37,7 @@ public function getMessage(): string
3737
return $this->message;
3838
}
3939

40-
public function getData(): array|null
40+
public function getData(): ?array
4141
{
4242
return $this->data;
4343
}

0 commit comments

Comments
 (0)