Skip to content

Commit

Permalink
pint
Browse files Browse the repository at this point in the history
  • Loading branch information
rudashi committed Jul 16, 2024
1 parent 920ad0a commit 0066486
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Tokens/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@ public function __toString(): string
return $this->group->getToken();
}

public static function make(
bool $lookbehind = false,
bool $lookahead = false,
bool $negative = false
): self {
public static function make(bool $lookbehind = false, bool $lookahead = false, bool $negative = false): self
{
if ($lookbehind && $lookahead) {
throw new LogicException('Unable to look behind and ahead at the same time.');
}
Expand Down

0 comments on commit 0066486

Please sign in to comment.