BUGFIX: Allow deprecations to work in vim too.
* Remove line breaks from output, as syntastic will not parse them. * It's up to the report to format the messages, not the Sniff. Relates: #33
This commit is contained in:
parent
65773c88b5
commit
0ee10ea61f
2 changed files with 4 additions and 6 deletions
|
@ -81,9 +81,9 @@ class Typo3Update_Sniffs_Deprecated_AjaxRegistrationSniff implements PhpCsSniff
|
|||
}
|
||||
|
||||
$phpcsFile->addWarning(
|
||||
"Defining AJAX using %s is no longer supported with a single String like %s.\n"
|
||||
. "Since TYPO3 7.6, use PSR-7-based Routing for Backend AJAX Requests.\n"
|
||||
. 'See: %s',
|
||||
'Defining AJAX using %s is no longer supported with a single String like %s.'
|
||||
. ' Since TYPO3 7.6, use PSR-7-based Routing for Backend AJAX Requests.'
|
||||
. ' See: %s',
|
||||
$tokenToCheck,
|
||||
'',
|
||||
[
|
||||
|
|
|
@ -101,9 +101,7 @@ class Typo3Update_Sniffs_Deprecated_GenericFunctionCallSniff implements PhpCsSni
|
|||
$functionCall = $token['content'];
|
||||
|
||||
$phpcsFile->addWarning(
|
||||
"Legacy function calls are not allowed; found %s.\n"
|
||||
. "%s.\n"
|
||||
. "See: %s",
|
||||
'Legacy function calls are not allowed; found %s. %s. See: %s',
|
||||
$tokenPosition,
|
||||
$functionCall,
|
||||
[
|
||||
|
|
Loading…
Reference in a new issue