fix: usage of Logger
authorgggeek <giunta.gaetano@gmail.com>
Mon, 29 Jul 2019 14:14:39 +0000 (14:14 +0000)
committergggeek <giunta.gaetano@gmail.com>
Mon, 29 Jul 2019 14:14:39 +0000 (14:14 +0000)
src/Encoder.php
src/Server.php
src/Value.php
src/Wrapper.php

index 53474d1..1850ff4 100644 (file)
@@ -2,6 +2,7 @@
 
 namespace PhpXmlRpc;
 
+use PhpXmlRpc\Helper\Logger;
 use PhpXmlRpc\Helper\XMLParser;
 
 /**
index 8cb66f0..8c53349 100644 (file)
@@ -2,8 +2,9 @@
 
 namespace PhpXmlRpc;
 
-use PhpXmlRpc\Helper\XMLParser;
+use PhpXmlRpc\Helper\Logger;
 use PhpXmlRpc\Helper\Charset;
+use PhpXmlRpc\Helper\XMLParser;
 
 /**
  * Allows effortless implementation of XML-RPC servers
index 77ca677..2481853 100644 (file)
@@ -3,6 +3,7 @@
 namespace PhpXmlRpc;
 
 use PhpXmlRpc\Helper\Charset;
+use PhpXmlRpc\Helper\Logger;
 
 /**
  * This class enables the creation of values for XML-RPC, by encapsulating plain php values.
index 2417139..68dd559 100644 (file)
@@ -7,6 +7,8 @@
 
 namespace PhpXmlRpc;
 
+use PhpXmlRpc\Helper\Logger;
+
 /**
  * PHP-XMLRPC "wrapper" class - generate stubs to transparently access xmlrpc methods as php functions and vice-versa.
  * Note: this class implements the PROXY pattern, but it is not named so to avoid confusion with http proxies.