From 45d7de293c1963406665411a7430a34d1fe64860 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 16 Mar 2017 15:18:10 +0100 Subject: [PATCH] BUGFIX: Fix wrong phpdocs of sniff classes --- .../Typo3Update/Sniffs/LegacyClassnames/InstanceofSniff.php | 2 +- .../LegacyClassnames/InstantiationWithMakeInstanceSniff.php | 2 +- .../Sniffs/LegacyClassnames/InstantiationWithNewSniff.php | 2 +- .../LegacyClassnames/InstantiationWithObjectManagerSniff.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstanceofSniff.php b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstanceofSniff.php index 05cf416..518e3e6 100644 --- a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstanceofSniff.php +++ b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstanceofSniff.php @@ -20,7 +20,7 @@ */ /** - * Detect and migrate extend and implement of old legacy classnames. + * Detect and instanceof checks of old legacy classnames. */ class Typo3Update_Sniffs_LegacyClassnames_InstanceofSniff implements PHP_CodeSniffer_Sniff { diff --git a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithMakeInstanceSniff.php b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithMakeInstanceSniff.php index 94bb175..989668a 100644 --- a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithMakeInstanceSniff.php +++ b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithMakeInstanceSniff.php @@ -22,7 +22,7 @@ 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 { diff --git a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithNewSniff.php b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithNewSniff.php index d98dc79..e96d117 100644 --- a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithNewSniff.php +++ b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithNewSniff.php @@ -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 { diff --git a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithObjectManagerSniff.php b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithObjectManagerSniff.php index c16b47d..dec134f 100644 --- a/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithObjectManagerSniff.php +++ b/src/Standards/Typo3Update/Sniffs/LegacyClassnames/InstantiationWithObjectManagerSniff.php @@ -22,7 +22,7 @@ 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 {