Merge remote-tracking branch 'origin/develop' into feature/46-automated-testing

This commit is contained in:
Daniel Siepmann 2017-04-09 20:20:21 +02:00
commit 65bc89ad7c

View file

@ -78,7 +78,7 @@ class Typo3Update_Sniffs_LegacyClassnames_MissingVendorForPluginsAndModulesSniff
if ($fix === true) { if ($fix === true) {
$phpcsFile->fixer->replaceToken( $phpcsFile->fixer->replaceToken(
$firstArgument, $firstArgument,
"'{Options::getVendor()}.' . {$tokens[$firstArgument]['content']}" "'" . Options::getVendor() . ".' . " . $tokens[$firstArgument]['content']
); );
} }
} }