mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?= '<?php' ?>
|
|
|
|
/**
|
|
* An helper file for Laravel 4, to provide autocomplete information to your IDE
|
|
* Generated with https://github.com/barryvdh/laravel-ide-helper
|
|
*
|
|
* @author Barry vd. Heuvel <[email protected]>
|
|
*/
|
|
|
|
<?php foreach($namespaces as $namespace => $aliases): ?>
|
|
|
|
namespace <?= $namespace == '__root' ? '' : $namespace ?>{
|
|
|
|
<?= $namespace == '__root' ? $helpers : '' ?>
|
|
|
|
<?php foreach($aliases as $alias): ?>
|
|
|
|
<?= $alias->getClassType() ?> <?= $alias->getAlias() ?> <?= $alias->getExtends() ? 'extends ' . $alias->getExtends() : '' ?>{
|
|
<?php foreach($alias->getMethods() as $method): ?>
|
|
|
|
<?= trim($method->getDocComment()) ?>
|
|
|
|
public static function <?= $method->getName() ?>(<?= $method->getParamsWithDefault() ?>){<?php if($method->getDeclaringClass() !== $method->getRoot()): ?>
|
|
|
|
//Method inherited from <?= $method->getDeclaringClass() ?>
|
|
<?php endif; ?>
|
|
|
|
<?= $method->shouldReturn() ? 'return ': '' ?><?= $method->getRoot() ?>::<?= $method->getName() ?>(<?= $method->getParams() ?>);
|
|
}
|
|
<?php endforeach; ?>
|
|
|
|
}
|
|
|
|
<?php endforeach; ?>
|
|
|
|
}
|
|
|
|
<?php endforeach; ?>
|