Skip to content

Commit

Permalink
Actualize php-cs-fixer and simplify rector rules
Browse files Browse the repository at this point in the history
  • Loading branch information
SerafimArts committed Apr 15, 2024
1 parent 16b7912 commit 7df22a1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/ParserConfigsTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,10 @@ trait ParserConfigsTrait
*/
protected function bootParserConfigsTrait(array $options): void
{
$this
->completeAt($options[Config::CONFIG_EOI] ?? $this->eoi)
$this->completeAt($options[Config::CONFIG_EOI] ?? $this->eoi)
->withBuffer($options[Config::CONFIG_BUFFER] ?? $this->buffer)
->eachStepThrough($options[Config::CONFIG_STEP_REDUCER] ?? null)
->possibleTokensSearching($options[Config::CONFIG_POSSIBLE_TOKENS_SEARCHING] ?? false)
->allowTrailingTokens($options[Config::CONFIG_ALLOW_TRAILING_TOKENS] ?? false)
;
->allowTrailingTokens($options[Config::CONFIG_ALLOW_TRAILING_TOKENS] ?? false);
}

/**
Expand Down

0 comments on commit 7df22a1

Please sign in to comment.