Merge pull request #57 from DanielSiepmann/hotfix/fix-broken-vendor-sniff
BUGFIX: Update string to replace missing vendor token
This commit is contained in:
commit
cf14c8dd7b
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Typo3Update_Sniffs_LegacyClassnames_MissingVendorForPluginsAndModulesSniff
|
|||
if ($fix === true) {
|
||||
$phpcsFile->fixer->replaceToken(
|
||||
$firstArgument,
|
||||
"'{Options::getVendor()}.' . {$tokens[$firstArgument]['content']}"
|
||||
"'" . Options::getVendor() . ".' . " . $tokens[$firstArgument]['content']
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue