8000 [Serializer] Fix CS of ObjectNormalizerTest · symfony/symfony@cf27a1d · GitHub
[go: up one dir, main page]

Skip to content

Commit cf27a1d

Browse files
committed
[Serializer] Fix CS of ObjectNormalizerTest
1 parent d10ffa4 commit cf27a1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Serializer/Tests/Normalizer/ObjectNormalizerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ public function setCamelCase($camelCase)
476476

477477
public function otherMethod()
478478
{
479-
throw new \RuntimeException("Dummy::otherMethod() should not be called");
479+
throw new \RuntimeException('Dummy::otherMethod() should not be called');
480480
}
481481

482482
public function setObject($object)
@@ -515,7 +515,7 @@ public function isBaz()
515515

516516
public function otherMethod()
517517
{
518-
throw new \RuntimeException("Dummy::otherMethod() should not be called");
518+
throw new \RuntimeException('Dummy::otherMethod() should not be called');
519519
}
520520
}
521521

@@ -548,6 +548,6 @@ public function getBaz()
548548

549549
public function otherMethod()
550550
{
551-
throw new \RuntimeException("Dummy::otherMethod() should not be called");
551+
throw new \RuntimeException('Dummy::otherMethod() should not be called');
552552
}
553553
}

0 commit comments

Comments
 (0)
0