From a3548a6e232505bf560698ee36aa30fe9fe45d2f Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 16 Aug 2017 08:33:11 +0200 Subject: [PATCH] fixed CS --- test/Twig/Tests/Extension/CoreTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Twig/Tests/Extension/CoreTest.php b/test/Twig/Tests/Extension/CoreTest.php index da5273348..ca69b4af6 100644 --- a/test/Twig/Tests/Extension/CoreTest.php +++ b/test/Twig/Tests/Extension/CoreTest.php @@ -264,7 +264,7 @@ class Twig_Tests_Extension_CoreTest extends \PHPUnit\Framework\TestCase array(array(), new CoreTestIterator($i, $keys, true), count($keys) + 10), array('de', 'abcdef', 3, 2), array(array(), new SimpleXMLElement('12'), 3), - array(array(), new ArrayIterator(array(1, 2)), 3) + array(array(), new ArrayIterator(array(1, 2)), 3), ); } } @@ -344,7 +344,7 @@ final class CoreTestIterator implements Iterator { ++$this->position; if ($this->position === $this->maxPosition) { - throw new LogicException(sprintf('Code should not iterate beyond %d.', $this->maxPosition)); + throw new LogicException(sprintf('Code should not iterate beyond %d.', $this->maxPosition)); } }