Skip to content

Commit

Permalink
Merge pull request #29 from harryfinn/amend/namespaced-autoloading
Browse files Browse the repository at this point in the history
Amend namespaced class autoloader
  • Loading branch information
harryfinn authored Dec 1, 2017
2 parents 27c27dd + 942a147 commit c6b9ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class.autoloaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static function autoload_classes($name) {
if(file_exists($class_file_path)) require_once $class_file_path;

$app_namespaced_class_file_path = self::app_namespaced_class_file_path(
$class_name
$name
);

if(file_exists($app_namespaced_class_file_path)) {
Expand Down

0 comments on commit c6b9ab2

Please sign in to comment.