From 668c1f3b50f954f328ef2f82446162ed3db2378a Mon Sep 17 00:00:00 2001 From: flashwave Date: Thu, 7 Jul 2022 15:55:39 +0000 Subject: [PATCH] Renamed AuthInterface to IAuth. --- config.example.ini | 2 +- src/Auth/{AuthInterface.php => IAuth.php} | 2 +- src/Auth/MisuzuAuth.php | 2 +- src/Auth/NabuccoAuth.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename src/Auth/{AuthInterface.php => IAuth.php} (82%) 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 @@