Skip to content

Commit

Permalink
Ran php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
sebprt committed Jul 2, 2024
1 parent 49a8ba2 commit cfd66f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
'ereg_to_preg' => true,
'dir_constant' => true,
'method_chaining_indentation' => false,
'string_implicit_backslashes' => [
'single_quoted' => 'escape',
'heredoc' => 'escape',
'double_quoted' => 'escape'
]
])
->setFinder($finder)
->setCacheFile('.php-cs-fixer.cache') // forward compatibility with 3.x line
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Filtering/Builder/ExclusionsBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

final class ExclusionsBuilder
{
/** @var list<array{condition: Node\Expr, reason: ?Node\Expr}> $exclusions */
/** @var list<array{condition: Node\Expr, reason: ?Node\Expr}> */
private array $exclusions = [];

public function withCondition(Node\Expr $condition, ?Node\Expr $reason): self
Expand Down

0 comments on commit cfd66f5

Please sign in to comment.