Skip to content

Commit

Permalink
Merge branch '1.8' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
hacfi committed Jan 30, 2016
2 parents 6e64133 + 95dbe97 commit 23dad88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Serializer/JMSSerializerAdapter.php
Expand Up @@ -22,7 +22,7 @@
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
final class JMSSerializerAdapter implements Serializer
class JMSSerializerAdapter implements Serializer
{
/**
* @internal
Expand Down
2 changes: 1 addition & 1 deletion Serializer/SymfonySerializerAdapter.php
Expand Up @@ -19,7 +19,7 @@
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
final class SymfonySerializerAdapter implements Serializer
class SymfonySerializerAdapter implements Serializer
{
private $serializer;

Expand Down
8 changes: 4 additions & 4 deletions Tests/Functional/SerializerErrorTest.php
Expand Up @@ -54,13 +54,13 @@ public function testSerializeExceptionXml($testCase, $expectedContent)

public function serializeExceptionXmlProvider()
{
$expectedSerializerContent = <<<XML
$expectedSerializerContent = <<<'XML'
<?xml version="1.0"?>
<response><code>500</code><message>Something bad happened.</message><errors/></response>
XML;

$expectedJMSContent = <<<XML
$expectedJMSContent = <<<'XML'
<?xml version="1.0" encoding="UTF-8"?>
<result xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<code>500</code>
Expand Down Expand Up @@ -108,13 +108,13 @@ public function testSerializeInvalidFormXml($testCase, $expectedContent)

public function serializeInvalidFormXmlProvider()
{
$expectedSerializerContent = <<<XML
$expectedSerializerContent = <<<'XML'
<?xml version="1.0"?>
<response><code>400</code><message>Validation Failed</message><errors><children><name><errors>This value should not be blank.</errors></name></children></errors></response>
XML;

$expectedJMSContent = <<<XML
$expectedJMSContent = <<<'XML'
<?xml version="1.0" encoding="UTF-8"?>
<result>
<code>400</code>
Expand Down

0 comments on commit 23dad88

Please sign in to comment.