Skip to content

Commit

Permalink
Fix autoloading of class files
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier authored Sep 22, 2020
1 parent 2a9d8ea commit ef99c4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Autoloader for all Kirby GEO Classes
*/
load([
'kirby\\geo\\geo' => __DIR__ . '/lib/geo.php',
'kirby\\geo\\point' => __DIR__ . '/lib/point.php'
'kirby\\geo\\geo' => __DIR__ . '/lib/Geo.php',
'kirby\\geo\\point' => __DIR__ . '/lib/Point.php'
]);

/**
Expand Down

0 comments on commit ef99c4c

Please sign in to comment.