mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
25 lines
698 B
PHP
25 lines
698 B
PHP
<?= '<?php' ?> namespace PHPSTORM_META {
|
|
|
|
/**
|
|
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
|
|
* Generated on <?= date("Y-m-d") ?>.
|
|
*
|
|
* @author Barry vd. Heuvel <[email protected]>
|
|
* @see https://github.com/barryvdh/laravel-ide-helper
|
|
*/
|
|
|
|
/** @noinspection PhpUnusedLocalVariableInspection */
|
|
/** @noinspection PhpIllegalArrayKeyTypeInspection */
|
|
$STATIC_METHOD_TYPES = [
|
|
\App::make('') => [
|
|
<?php foreach($bindings as $abstract => $class): ?>
|
|
'<?= $abstract ?>' instanceof \<?= $class ?>,
|
|
<?php endforeach ?> ],
|
|
app('') => [
|
|
<?php foreach($bindings as $abstract => $class): ?>
|
|
'<?= $abstract ?>' instanceof \<?= $class ?>,
|
|
<?php endforeach ?> ],
|
|
];
|
|
|
|
}
|