Skip to content

Commit

Permalink
Rename class files - remove ".class" part
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubboucek committed Nov 13, 2019
1 parent 8babf08 commit 9d41f81
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 9d41f81

Please sign in to comment.