From f2cb718bdbb001ea0164e7dbf97c1540db95528f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 12 Aug 2022 08:33:05 +0200 Subject: [PATCH] Fix CS --- tests/Node/Expression/FilterTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Node/Expression/FilterTest.php b/tests/Node/Expression/FilterTest.php index 0854f51a5..4b30c9cae 100644 --- a/tests/Node/Expression/FilterTest.php +++ b/tests/Node/Expression/FilterTest.php @@ -207,13 +207,13 @@ class ParentMagicCallStub { public static function identifier() { - throw new \Exception('Identifier has not been defined'); + throw new \Exception('Identifier has not been defined.'); } public static function __callStatic($method, $arguments) { if ('magicStaticCall' !== $method) { - throw new \BadMethodCallException('Unexpected call to __callStatic'); + throw new \BadMethodCallException('Unexpected call to __callStatic.'); } return 'inherited_static_magic_'.static::identifier().'_'.$arguments[0];