Ejemplo n.º 1
0
 /**
  * Execute the check
  *
  * @return void
  */
 public function execute()
 {
     $extensions = Tx_Smoothmigration_Utility_ExtensionUtility::getIncompatibleExtensions();
     foreach ($extensions as $extension => $versionRange) {
         $location = new Tx_Smoothmigration_Domain_Model_IssueLocation_Extension($extension, $versionRange[0], $versionRange[1]);
         $this->issues[] = new Tx_Smoothmigration_Domain_Model_Issue($this->parentCheck->getIdentifier(), $location);
     }
 }