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

This commit is contained in:
Daniel Siepmann 2017-04-10 09:34:48 +02:00
commit 56f5578a1f

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']
); );
} }
} }