mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
Skip validator
This commit is contained in:
@@ -71,6 +71,11 @@ class MetaCommand extends Command {
|
||||
|
||||
$bindings = array();
|
||||
foreach ($this->getAbstracts() as $abstract) {
|
||||
// Validator causes problems in Lumen
|
||||
if ($abstract == 'validator') {
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
$concrete = $this->laravel->make($abstract);
|
||||
if (is_object($concrete)) {
|
||||
|
||||
Reference in New Issue
Block a user