mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
21 lines
554 B
PHP
21 lines
554 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
|
|
*/
|
|
$STATIC_METHOD_TYPES = [
|
|
<?php foreach($methods as $method): ?>
|
|
<?= $method ?> => [
|
|
<?php foreach($bindings as $abstract => $class): ?>
|
|
'<?= $abstract ?>' instanceof \<?= $class ?>,
|
|
<?php endforeach ?> ],
|
|
<?php endforeach ?>
|
|
];
|
|
}
|