Skip to content

Commit

Permalink
[11.x] consistent multiline constructors (#53566)
Browse files Browse the repository at this point in the history
* consistent multiline constructors

- trailing comma
- closing parenthese on new line

* standardize multiline constructors

- first parameter on new line
- trailing commas
- parenthese on new line
  • Loading branch information
browner12 authored Nov 18, 2024
1 parent b0ca059 commit 8f5cb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compilers/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public function __construct(
$cachePath,
$basePath = '',
$shouldCache = true,
$compiledExtension = 'php')
{
$compiledExtension = 'php',
) {
if (! $cachePath) {
throw new InvalidArgumentException('Please provide a valid cache path.');
}
Expand Down

0 comments on commit 8f5cb77

Please sign in to comment.