From 21cf62b94934af51e6e00522e3e9ee7d64de03ef Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 25 Apr 2017 15:09:32 +0200 Subject: [PATCH] TASK: migrate InheritanceSniff Relates: #72 --- .../Typo3Update/Sniffs/Classname/InheritanceSniff.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Standards/Typo3Update/Sniffs/Classname/InheritanceSniff.php b/src/Standards/Typo3Update/Sniffs/Classname/InheritanceSniff.php index aa5f134..d9096f1 100644 --- a/src/Standards/Typo3Update/Sniffs/Classname/InheritanceSniff.php +++ b/src/Standards/Typo3Update/Sniffs/Classname/InheritanceSniff.php @@ -79,11 +79,6 @@ class Typo3Update_Sniffs_Classname_InheritanceSniff extends AbstractClassnameChe } foreach ($interfaces as $interface) { - // TODO: Migrate - if (! $this->isLegacyClassname($interface)) { - continue; - } - $position = $phpcsFile->findNext(T_STRING, $stackPtr, null, false, $interface); if ($position === false) { continue;