Skip to content

Commit 7e07d32

Browse files
committed
Apply PHP CS Fixer formatting
1 parent 3802a55 commit 7e07d32

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

src/CoyoteCert.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
use CoyoteCert\Enums\KeyType;
1313
use CoyoteCert\Enums\RevocationReason;
1414
use CoyoteCert\Exceptions\AcmeException;
15-
use CoyoteCert\Exceptions\CaaException;
1615
use CoyoteCert\Http\Client as HttpClient;
1716
use CoyoteCert\Http\Psr18Adapter;
1817
use CoyoteCert\Interfaces\ChallengeHandlerInterface;
@@ -237,7 +236,7 @@ public function issue(): StoredCertificate
237236
if (!$this->skipCaaCheck) {
238237
$domainIdentifiers = array_values(array_filter(
239238
$this->domains,
240-
static fn (string $id): bool => !filter_var($id, FILTER_VALIDATE_IP),
239+
static fn(string $id): bool => !filter_var($id, FILTER_VALIDATE_IP),
241240
));
242241

243242
if (!empty($domainIdentifiers)) {

tests/Unit/Support/CaaCheckerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ function makeCaaRecord(string $tag, string $value, int $flag = 0): CAA
2222
/**
2323
* Build a CaaChecker whose resolver returns $records for every domain.
2424
*
25-
* @param CAA[]|array<string, CAA[]> $recordsOrMap Either a flat array (same records for all
26-
* domains) or a domain-keyed map.
25+
* @param CAA[]|array<string, CAA[]> $recordsOrMap Either a flat array (same records for all
26+
* domains) or a domain-keyed map.
2727
*/
2828
function makeChecker(array $recordsOrMap = []): CaaChecker
2929
{

0 commit comments

Comments
 (0)