Skip to content

Commit

Permalink
Fix method name casing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Dec 14, 2016
1 parent 6c9eb4e commit 2bca058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/I18n/MessagesFileLoader.php
Expand Up @@ -130,7 +130,7 @@ public function __invoke()
}

$name = ucfirst($ext);
$class = App::classname($name, 'I18n\Parser', 'FileParser');
$class = App::className($name, 'I18n\Parser', 'FileParser');

if (!$class) {
throw new RuntimeException(sprintf('Could not find class %s', "{$name}FileParser"));
Expand Down

0 comments on commit 2bca058

Please sign in to comment.