From 4d103db1c02397819f080943c22beecfb2996e25 Mon Sep 17 00:00:00 2001 From: Rudolph Gottesheim Date: Thu, 1 Aug 2024 10:04:53 +0200 Subject: [PATCH] Fix the spaces-around-concat.php test (Conflicted with another rule) (#36) --- tests/fixtures/valid/spaces-around-concat.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/fixtures/valid/spaces-around-concat.php b/tests/fixtures/valid/spaces-around-concat.php index 57d40a6..e0ef17a 100644 --- a/tests/fixtures/valid/spaces-around-concat.php +++ b/tests/fixtures/valid/spaces-around-concat.php @@ -2,4 +2,6 @@ declare(strict_types=1); -echo 'foo' . 'bar'; +$var = 'bar'; + +echo 'foo' . $var;