Sfoglia il codice sorgente

Removed some phpstorm autogenerated comments

Ryan Mauger 10 anni fa
parent
commit
50e90835a0
1 ha cambiato i file con 3 aggiunte e 7 eliminazioni
  1. 3 7
      tests/Zend/Controller/Router/Route/ChainTest.php

+ 3 - 7
tests/Zend/Controller/Router/Route/ChainTest.php

@@ -1028,7 +1028,7 @@ class Zend_Controller_Router_Route_SubclassTest extends Zend_Controller_Router_R
     public function match($path, $partial = false)
     {
         $path = $path->getPathInfo();
-        $match = parent::match($path, $partial); // TODO: Change the autogenerated stub
+        $match = parent::match($path, $partial);
         if (is_array($match)) {
             $this->setMatchedPath($this->_route);
         }
@@ -1041,14 +1041,10 @@ class Zend_Controller_Router_Route_SubclassTest extends Zend_Controller_Router_R
     }
 
     public function assemble($data = array(), $reset = false, $encode = false)
-    {
-        // TODO: Implement assemble() method.
-    }
+    {}
 
     public static function getInstance(Zend_Config $config)
-    {
-        // TODO: Implement getInstance() method.
-    }
+    {}
 
 }