mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
Fix some minors errors
This commit is contained in:
parent
5b38dfe34a
commit
051a276887
@ -36,11 +36,11 @@ abstract class AbstractPlugin implements PluginEntryPointInterface
|
||||
} elseif (file_exists($applicationPath = getcwd().'/bootstrap/app.php')) { // Local Dev
|
||||
$app = require $applicationPath;
|
||||
} else { // Packages
|
||||
$app = (new static)->loadIdeProvider();
|
||||
$app = (new static)->createApplication();
|
||||
$app->register($ide_helper_provider);
|
||||
}
|
||||
|
||||
$app = $this->getApplicationInstance($app, $ide_helper_provider);
|
||||
$app = $this->loadIdeProvider($app, $ide_helper_provider);
|
||||
|
||||
$fake_filesystem = new FakeFilesystem();
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
<?php
|
||||
namespace Psalm\LaravelPlugin;
|
||||
|
||||
use Psalm\Plugin\PluginEntryPointInterface;
|
||||
|
||||
class LumenPlugin extends AbstractPlugin implements PluginEntryPointInterface
|
||||
{
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user