Skip to content

Commit af8a72f

Browse files
committed
CS fix: align assignments
1 parent 05febc3 commit af8a72f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Standards/PSR12/Sniffs/Files/ImportStatementSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function process(File $phpcsFile, $stackPtr)
6565
}
6666

6767
$error = 'Import statements must not begin with a leading backslash';
68-
$fix = $phpcsFile->addFixableError($error, $next, 'LeadingSlash');
68+
$fix = $phpcsFile->addFixableError($error, $next, 'LeadingSlash');
6969

7070
if ($fix === true) {
7171
$phpcsFile->fixer->replaceToken($next, '');

0 commit comments

Comments
 (0)