From ac86f970c88238696e29f73e07a361cdc4bbb0d8 Mon Sep 17 00:00:00 2001 From: Pinga <121483313+getpinga@users.noreply.github.com> Date: Sun, 16 Jul 2023 07:54:58 +0300 Subject: [PATCH] Restructuring --- Tembo.php => eppClient.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Tembo.php => eppClient.php (99%) diff --git a/Tembo.php b/eppClient.php similarity index 99% rename from Tembo.php rename to eppClient.php index 48c92a5..0de4ea9 100644 --- a/Tembo.php +++ b/eppClient.php @@ -13,7 +13,7 @@ namespace Pinga\Tembo; use Pinga\Tembo\Exception\EppException; use Pinga\Tembo\Exception\EppNotConnectedException; -class Epp +class eppClient { private $resource; private $isLoggedIn; @@ -2599,7 +2599,7 @@ class Epp public function _response_log($content) { - $handle = fopen(dirname(__FILE__) . '/response.log', 'a'); + $handle = fopen(dirname(__FILE__) . '/epp_response.log', 'a'); ob_start(); echo "\n==================================\n"; ob_end_clean(); @@ -2609,7 +2609,7 @@ class Epp public function _request_log($content) { - $handle = fopen(dirname(__FILE__) . '/request.log', 'a'); + $handle = fopen(dirname(__FILE__) . '/epp_request.log', 'a'); ob_start(); echo "\n==================================\n"; ob_end_clean();