Skip to content

Commit

Permalink
Merge branch 'refs/heads/fix-class-filenames'
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubboucek committed Nov 13, 2019
2 parents 481ceef + 9d41f81 commit c5a7b00
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion simple-autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @see https://github.com/redbitcz/vyfakturuj-api-php/blob/master/manual-installation.md (Nápověda)
*/
spl_autoload_register(function ($class) {
$file = __DIR__ . '/libs/' . $class . '.class.php';
$file = __DIR__ . '/libs/' . $class . '.php';
if (file_exists($file)) {
require $file;
}
Expand Down

0 comments on commit c5a7b00

Please sign in to comment.