From d82e8f191fb043a0f8cbf2de64fd3027bfa4f772 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Mon, 21 Dec 2015 20:48:06 +0100 Subject: [PATCH] Fix meta for 5.2 seeder Fixes #287 --- src/Console/MetaCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/MetaCommand.php b/src/Console/MetaCommand.php index 30de843..1f6c439 100644 --- a/src/Console/MetaCommand.php +++ b/src/Console/MetaCommand.php @@ -71,8 +71,8 @@ class MetaCommand extends Command { $bindings = array(); foreach ($this->getAbstracts() as $abstract) { - // Validator causes problems in Lumen - if ($abstract == 'validator') { + // Validator and seeder cause problems + if (in_array($abstract, ['validator', 'seeder'])) { continue; }