Commit 20173213 authored by Joe Wallace's avatar Joe Wallace

Resolver::resolve() uses Str::classify() to determine class names

Signed-off-by: 's avatarJoe Wallace <joew@atiba.com>
parent b7ac1b75
...@@ -116,7 +116,7 @@ class Resolver { ...@@ -116,7 +116,7 @@ class Resolver {
// naming collisions with other bundle's migrations. // naming collisions with other bundle's migrations.
$prefix = Bundle::class_prefix($bundle); $prefix = Bundle::class_prefix($bundle);
$class = $prefix.substr($name, 18); $class = $prefix.\Laravel\Str::classify(substr($name, 18));
$migration = new $class; $migration = new $class;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment