Skip to content

Commit

Permalink
fix: usage of Logger
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Jul 29, 2019
1 parent 70e3fd7 commit 820f996
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Encoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace PhpXmlRpc;

use PhpXmlRpc\Helper\Logger;
use PhpXmlRpc\Helper\XMLParser;

/**
Expand Down
3 changes: 2 additions & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/Value.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions src/Wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 820f996

Please sign in to comment.