Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Aug 23, 2017
1 parent 1ad8cdf commit d1d6430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/src/MVC/Factory/MVCFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function createModel($name, $prefix = '', array $config = array())
$name = preg_replace('/[^A-Z0-9_]/i', '', $name);
$prefix = preg_replace('/[^A-Z0-9_]/i', '', $prefix);

$className = $this->getClassName('Model\\' . ucfirst($name) .'Model', $prefix);
$className = $this->getClassName('Model\\' . ucfirst($name) . 'Model', $prefix);

if (!$className)
{
Expand Down

0 comments on commit d1d6430

Please sign in to comment.