mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
Fix facades fullpath autocomplete (#441)
* Add method to retrieve namespace of extended class * Regroup classes by namespace of the class they extends * Restore facades shortnames * Fix classnames used for methods declaration
This commit is contained in:
committed by
Barry vd. Heuvel
parent
f1e93f042d
commit
8c306035aa
@@ -15,7 +15,7 @@ namespace {
|
||||
namespace <?= $namespace == '__root' ? '' : trim($namespace, '\\') ?> {
|
||||
<?php foreach($aliases as $alias): ?>
|
||||
|
||||
<?= $alias->getClassType() ?> <?= $alias->getShortName() ?> {
|
||||
<?= $alias->getClassType() ?> <?= $alias->getExtendsCLass() ?> {
|
||||
<?php foreach($alias->getMethods() as $method): ?>
|
||||
|
||||
<?= trim($method->getDocComment(' ')) ?>
|
||||
|
||||
Reference in New Issue
Block a user