diff --git a/config.example.ini b/config.example.ini index b83e080..b83af44 100644 --- a/config.example.ini +++ b/config.example.ini @@ -2,7 +2,7 @@ dsn = "mariadb://user:password@:unix:/eeprom?socket=/var/run/mysqld/mysqld.sock&charset=utf8mb4&init=SET SESSION time_zone = '+00:00', sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'" [Auth] -; Must be implementations of \EEPROM\Auth\AuthInterface +; Must be implementations of \EEPROM\Auth\IAuth clients[] = \EEPROM\Auth\MisuzuAuth clients[] = \EEPROM\Auth\SockChatAuth diff --git a/src/Auth/AuthInterface.php b/src/Auth/IAuth.php similarity index 82% rename from src/Auth/AuthInterface.php rename to src/Auth/IAuth.php index 9750974..5673d44 100644 --- a/src/Auth/AuthInterface.php +++ b/src/Auth/IAuth.php @@ -1,7 +1,7 @@