Skip to content

Commit

Permalink
Fix meta for 5.2 seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Dec 21, 2015
1 parent 5497e7d commit d82e8f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/MetaCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ public function fire()

$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;
}

Expand Down

0 comments on commit d82e8f1

Please sign in to comment.