Skip to content

Commit f0d168d

Browse files
committed
CS: Binary operators should be arounded by at least one space
1 parent 8b64e43 commit f0d168d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Logger/DbalLoggerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function testLogLongString()
8787
$testString = 'abc';
8888

8989
$shortString = str_pad('', DbalLogger::MAX_STRING_LENGTH, $testString);
90-
$longString = str_pad('', DbalLogger::MAX_STRING_LENGTH+1, $testString);
90+
$longString = str_pad('', DbalLogger::MAX_STRING_LENGTH + 1, $testString);
9191

9292
$dbalLogger
9393
->expects($this->once())

0 commit comments

Comments
 (0)