mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
composer fix-style
This commit is contained in:
committed by
github-actions[bot]
parent
61fd354706
commit
9f2a32f4d1
@@ -68,7 +68,9 @@ namespace PHPSTORM_META {
|
||||
<?php if (isset($expectedArguments)) : ?>
|
||||
<?php foreach ($expectedArguments as $function => $arguments) : ?>
|
||||
<?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; ?>
|
||||
|
||||
@@ -124,7 +124,7 @@ class MetaCommand extends Command
|
||||
'bindings' => $bindings,
|
||||
'methods' => $this->methods,
|
||||
'factories' => $factories,
|
||||
'expectedArguments' => $this->getExpectedArguments()
|
||||
'expectedArguments' => $this->getExpectedArguments(),
|
||||
])->render();
|
||||
|
||||
$filename = $this->option('filename');
|
||||
@@ -172,8 +172,8 @@ class MetaCommand extends Command
|
||||
{
|
||||
return [
|
||||
'config' => [
|
||||
0 => $this->getConfigHints()
|
||||
]
|
||||
0 => $this->getConfigHints(),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user