Skip to content

Commit

Permalink
CS fix: align assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Nov 13, 2019
1 parent 05febc3 commit af8a72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Standards/PSR12/Sniffs/Files/ImportStatementSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function process(File $phpcsFile, $stackPtr)
}

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

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

0 comments on commit af8a72f

Please sign in to comment.