From af60b555877dbb221c20823db7aa0f02d23e2f40 Mon Sep 17 00:00:00 2001 From: Jurian Sluiman Date: Sun, 11 Aug 2013 12:27:35 +0200 Subject: [PATCH 1/2] Fix missing method call --- src/SlmIdealPayment/Client/StandardClient.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/SlmIdealPayment/Client/StandardClient.php b/src/SlmIdealPayment/Client/StandardClient.php index e34031f..3aff329 100644 --- a/src/SlmIdealPayment/Client/StandardClient.php +++ b/src/SlmIdealPayment/Client/StandardClient.php @@ -530,10 +530,7 @@ protected function _createXmlForRequestStatus(array $data) $document->loadXML($xml); $this->sign($document); - - if (!$document->schemaValidate($this->getValidationSchema())) { - throw new Exception\XmlValidationException('Generated XML for status request could not be validated'); - } + $this->validate($document); return $document; } From 895b5c13aa9d65154dc27419934839ec31127cc4 Mon Sep 17 00:00:00 2001 From: Jurian Sluiman Date: Sun, 11 Aug 2013 12:27:48 +0200 Subject: [PATCH 2/2] Prepare beta1 tag --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27486ed..fe91a77 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ and save it in the root of your project: ``` { "require": { - "slm/ideal-payment": "@dev" + "slm/ideal-payment": "@beta" } } ``` @@ -178,4 +178,4 @@ $client->setKeyFile('data/ssl/priv.pem'); $client->setKeyPassword('h4x0r'); ``` -Now `$client` is configured, use above methods to perform the various requests. \ No newline at end of file +Now `$client` is configured, use above methods to perform the various requests.