Merge pull request #657 from samsonasik/break-loop

add break; on loop $namespaces when it match $ns on CreateMigration command
This commit is contained in:
Lonnie Ezell 2017-08-07 22:37:12 -05:00 committed by GitHub
commit 7fac6defc3

View File

@ -131,6 +131,7 @@ class CreateMigration extends BaseCommand
if ($namespace == $ns)
{
$homepath = realpath($path);
break;
}
}
}