From 3a18bb3a6b3a9979895b6111b07f6293cbb4e82d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 22 Sep 2021 17:05:23 +0200 Subject: [PATCH] Fix CS --- tests/escapingTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/escapingTest.php b/tests/escapingTest.php index 6ebb7b7e36a..31fb5032359 100644 --- a/tests/escapingTest.php +++ b/tests/escapingTest.php @@ -156,7 +156,7 @@ class escapingTest extends \PHPUnit\Framework\TestCase protected function setUp(): void { - $this->env = new \Twig\Environment($this->createMock('\Twig\Loader\LoaderInterface')); + $this->env = new Environment($this->createMock(LoaderInterface::class)); } public function testHtmlEscapingConvertsSpecialChars()