Merge pull request #19 from DanielSiepmann/hotfix/phpdocs

BUGFIX: Fix wrong phpdocs of sniff classes
This commit is contained in:
Daniel Hürtgen 2017-03-16 16:55:45 +01:00 committed by GitHub
commit db5f6a0209
4 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@
*/ */
/** /**
* Detect and migrate extend and implement of old legacy classnames. * Detect and migrate instanceof checks of old legacy classnames.
*/ */
class Typo3Update_Sniffs_LegacyClassnames_InstanceofSniff implements PHP_CodeSniffer_Sniff class Typo3Update_Sniffs_LegacyClassnames_InstanceofSniff implements PHP_CodeSniffer_Sniff
{ {

View file

@ -22,7 +22,7 @@
use PHP_CodeSniffer_Tokens as Tokens; use PHP_CodeSniffer_Tokens as Tokens;
/** /**
* Detect and migrate static calls to old legacy classnames. * Detect and migrate instantiations of old legacy classnames using "makeInstance".
*/ */
class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithMakeInstanceSniff implements PHP_CodeSniffer_Sniff class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithMakeInstanceSniff implements PHP_CodeSniffer_Sniff
{ {

View file

@ -20,7 +20,7 @@
*/ */
/** /**
* Detect and migrate static calls to old legacy classnames. * Detect and migrate old legacy classnames instantiations using phps "new".
*/ */
class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithNewSniff implements PHP_CodeSniffer_Sniff class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithNewSniff implements PHP_CodeSniffer_Sniff
{ {

View file

@ -22,7 +22,7 @@
use PHP_CodeSniffer_Tokens as Tokens; use PHP_CodeSniffer_Tokens as Tokens;
/** /**
* Detect and migrate static calls to old legacy classnames. * Detect and migrate old legacy classname instantiations using objectmanager create and get.
*/ */
class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithObjectManagerSniff implements PHP_CodeSniffer_Sniff class Typo3Update_Sniffs_LegacyClassnames_InstantiationWithObjectManagerSniff implements PHP_CodeSniffer_Sniff
{ {