Skip to content

Commit 9f2a32f

Browse files
laravel-ide-helpergithub-actions[bot]
authored andcommitted
composer fix-style
1 parent 61fd354 commit 9f2a32f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

resources/views/meta.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@
6868
<?php if (isset($expectedArguments)) : ?>
6969
<?php foreach ($expectedArguments as $function => $arguments) : ?>
7070
<?php foreach ($arguments as $index => $argumentList) : ?>
71-
expectedArguments(\<?= $function ?>(), <?= $index ?>,<?php foreach ($argumentList as $i => $arg) : ?><?php if($i % 10 == 0) { echo "\n"; } ?><?= var_export($arg, true); ?>,<?php endforeach; ?>
71+
expectedArguments(\<?= $function ?>(), <?= $index ?>,<?php foreach ($argumentList as $i => $arg) : ?><?php if($i % 10 == 0) {
72+
echo "\n";
73+
} ?><?= var_export($arg, true); ?>,<?php endforeach; ?>
7274
);
7375
<?php endforeach; ?>
7476
<?php endforeach; ?>

src/Console/MetaCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function handle()
124124
'bindings' => $bindings,
125125
'methods' => $this->methods,
126126
'factories' => $factories,
127-
'expectedArguments' => $this->getExpectedArguments()
127+
'expectedArguments' => $this->getExpectedArguments(),
128128
])->render();
129129

130130
$filename = $this->option('filename');
@@ -172,8 +172,8 @@ protected function getExpectedArguments()
172172
{
173173
return [
174174
'config' => [
175-
0 => $this->getConfigHints()
176-
]
175+
0 => $this->getConfigHints(),
176+
],
177177
];
178178
}
179179

0 commit comments

Comments
 (0)