diff options
-rwxr-xr-x | library/SSRS/Object/ExecutionParameters.php | 2 | ||||
-rw-r--r-- | library/SSRS/Soap/ServerException.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/SSRS/Object/ExecutionParameters.php b/library/SSRS/Object/ExecutionParameters.php index 371b89c..909cfea 100755 --- a/library/SSRS/Object/ExecutionParameters.php +++ b/library/SSRS/Object/ExecutionParameters.php @@ -1,6 +1,6 @@ <?php -use SSRS\Object; +namespace SSRS\Object; class ExecutionParameters extends ArrayIterator { diff --git a/library/SSRS/Soap/ServerException.php b/library/SSRS/Soap/ServerException.php index 7d71d10..a11bd57 100644 --- a/library/SSRS/Soap/ServerException.php +++ b/library/SSRS/Soap/ServerException.php @@ -9,7 +9,7 @@ class ServerException extends \Exception { public $faultactor; static function fromResponse($string) { - $xml = new SimpleXMLElement($string); + $xml = new \SimpleXMLElement($string); $ns = $xml->getNamespaces(true); $soap = $xml->children($ns['soap']); |