From 1474755f0363c79facfaf0f1d92c3fe6d0d9a428 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Sat, 19 May 2018 21:01:44 +0200 Subject: [PATCH] fix cs --- .../InvalidConfigurationConstructorInjectionRectorTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Rector/Contrib/Symfony/FrameworkBundle/GetToConstructorInjectionRector/InvalidConfigurationConstructorInjectionRectorTest.php b/tests/Rector/Contrib/Symfony/FrameworkBundle/GetToConstructorInjectionRector/InvalidConfigurationConstructorInjectionRectorTest.php index 990b50d66a3..3558721ae14 100644 --- a/tests/Rector/Contrib/Symfony/FrameworkBundle/GetToConstructorInjectionRector/InvalidConfigurationConstructorInjectionRectorTest.php +++ b/tests/Rector/Contrib/Symfony/FrameworkBundle/GetToConstructorInjectionRector/InvalidConfigurationConstructorInjectionRectorTest.php @@ -13,7 +13,9 @@ final class InvalidConfigurationConstructorInjectionRectorTest extends AbstractR public function test(): void { $this->expectException(InvalidConfigurationException::class); - $this->expectExceptionMessage('Make sure "kernel_class" parameters is set in rector.yml in "parameters:" section'); + $this->expectExceptionMessage( + 'Make sure "kernel_class" parameters is set in rector.yml in "parameters:" section' + ); $this->doTestFileMatchesExpectedContent(__DIR__ . '/Wrong/wrong.php.inc', __DIR__ . '/Correct/correct.php.inc'); }