Skip to content

Commit

Permalink
fixup: missed from my local changes
Browse files Browse the repository at this point in the history
Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored Dec 27, 2024
1 parent 6cf1cbc commit 63f03c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/SetupCheck/SetupCheckManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ public function __construct(
) {
}

public function runClass(): array {
public function runClass(string $limitClass): array {
if (str_starts_with($limitClass, '\\')) {
$limitClass = substr($limitClass, 1);
}
return $this->run($limitClass);
}

public function runCategory(): array {
public function runCategory(string $limitCategory): array {
return $this->run($limitCategory);
}

Expand Down

0 comments on commit 63f03c8

Please sign in to comment.