composer fix-style

This commit is contained in:
laravel-ide-helper
2024-12-29 13:19:34 +00:00
committed by github-actions[bot]
parent 61fd354706
commit 9f2a32f4d1
2 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -68,7 +68,9 @@ namespace PHPSTORM_META {
<?php if (isset($expectedArguments)) : ?> <?php if (isset($expectedArguments)) : ?>
<?php foreach ($expectedArguments as $function => $arguments) : ?> <?php foreach ($expectedArguments as $function => $arguments) : ?>
<?php foreach ($arguments as $index => $argumentList) : ?> <?php foreach ($arguments as $index => $argumentList) : ?>
expectedArguments(\<?= $function ?>(), <?= $index ?>,<?php foreach ($argumentList as $i => $arg) : ?><?php if($i % 10 == 0) { echo "\n"; } ?><?= var_export($arg, true); ?>,<?php endforeach; ?> expectedArguments(\<?= $function ?>(), <?= $index ?>,<?php foreach ($argumentList as $i => $arg) : ?><?php if($i % 10 == 0) {
echo "\n";
} ?><?= var_export($arg, true); ?>,<?php endforeach; ?>
); );
<?php endforeach; ?> <?php endforeach; ?>
<?php endforeach; ?> <?php endforeach; ?>
+3 -3
View File
@@ -124,7 +124,7 @@ class MetaCommand extends Command
'bindings' => $bindings, 'bindings' => $bindings,
'methods' => $this->methods, 'methods' => $this->methods,
'factories' => $factories, 'factories' => $factories,
'expectedArguments' => $this->getExpectedArguments() 'expectedArguments' => $this->getExpectedArguments(),
])->render(); ])->render();
$filename = $this->option('filename'); $filename = $this->option('filename');
@@ -172,8 +172,8 @@ class MetaCommand extends Command
{ {
return [ return [
'config' => [ 'config' => [
0 => $this->getConfigHints() 0 => $this->getConfigHints(),
] ],
]; ];
} }