Restructuring
This commit is contained in:
parent
5675423dd7
commit
ac86f970c8
1 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ namespace Pinga\Tembo;
|
||||||
use Pinga\Tembo\Exception\EppException;
|
use Pinga\Tembo\Exception\EppException;
|
||||||
use Pinga\Tembo\Exception\EppNotConnectedException;
|
use Pinga\Tembo\Exception\EppNotConnectedException;
|
||||||
|
|
||||||
class Epp
|
class eppClient
|
||||||
{
|
{
|
||||||
private $resource;
|
private $resource;
|
||||||
private $isLoggedIn;
|
private $isLoggedIn;
|
||||||
|
@ -2599,7 +2599,7 @@ class Epp
|
||||||
|
|
||||||
public function _response_log($content)
|
public function _response_log($content)
|
||||||
{
|
{
|
||||||
$handle = fopen(dirname(__FILE__) . '/response.log', 'a');
|
$handle = fopen(dirname(__FILE__) . '/epp_response.log', 'a');
|
||||||
ob_start();
|
ob_start();
|
||||||
echo "\n==================================\n";
|
echo "\n==================================\n";
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
|
@ -2609,7 +2609,7 @@ class Epp
|
||||||
|
|
||||||
public function _request_log($content)
|
public function _request_log($content)
|
||||||
{
|
{
|
||||||
$handle = fopen(dirname(__FILE__) . '/request.log', 'a');
|
$handle = fopen(dirname(__FILE__) . '/epp_request.log', 'a');
|
||||||
ob_start();
|
ob_start();
|
||||||
echo "\n==================================\n";
|
echo "\n==================================\n";
|
||||||
ob_end_clean();
|
ob_end_clean();
|
Loading…
Reference in a new issue