Skip to content

Commit

Permalink
Fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Moreno committed Dec 9, 2016
1 parent 15b3781 commit cee4eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lib/BuilderUtilBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ protected function getClassNamePath($className)
$name = str_replace(App::getNamespace(), '', $className);

// TODO: Composer loader compatibility.
return App::path().'/'.str_replace('\\', '/', $name).'.php';
return App::path().DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $name).'.php';
}

/**
Expand Down

0 comments on commit cee4eca

Please sign in to comment.