Skip to content

Commit 76c160a

Browse files
committed
CS
1 parent d632b25 commit 76c160a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Alphabet/InMemoryAlphabet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ public function map(string $char, int $alphabetSize): int
5252

5353
return $newLabel;
5454
}
55-
}
55+
}

src/StateSet/InMemoryStateSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function all(): array
4747

4848
public function getChildrenOfState(int $state): array
4949
{
50-
if (!isset($this->children[$state])) {
50+
if (! isset($this->children[$state])) {
5151
return [];
5252
}
5353

0 commit comments

Comments
 (0)