Skip to content

Commit

Permalink
chore: php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
davisenra committed Mar 27, 2024
1 parent 095e504 commit 10970f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
])
->setFinder(
(new PhpCsFixer\Finder())
->in([
__DIR__.'/src',
__DIR__.'/config',
__DIR__.'/bootstrap',
__DIR__.'/public',
__DIR__.'/tests',
])
->in([
__DIR__ . '/src',
__DIR__ . '/config',
__DIR__ . '/bootstrap',
__DIR__ . '/public',
__DIR__ . '/tests',
])
);
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
for ($nbRequests = 0, $running = true; isset($_SERVER['MAX_REQUESTS']) && ($nbRequests < ((int)$_SERVER['MAX_REQUESTS'])) && $running; ++$nbRequests) {
$running = \frankenphp_handle_request($handler);
gc_collect_cycles();
}
}

0 comments on commit 10970f9

Please sign in to comment.