Procházet zdrojové kódy

ZF-10643: Remove commented method

- Remove commented "count" method from interface; defined in Countable

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23313 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew před 15 roky
rodič
revize
de17b2a709
1 změnil soubory, kde provedl 1 přidání a 8 odebrání
  1. 1 8
      library/Zend/Paginator/Adapter/Interface.php

+ 1 - 8
library/Zend/Paginator/Adapter/Interface.php

@@ -30,13 +30,6 @@
 interface Zend_Paginator_Adapter_Interface extends Countable
 {
     /**
-     * Returns the total number of rows in the collection.
-     *
-     * @return integer
-     */
-    //public function count();
-
-    /**
      * Returns an collection of items for a page.
      *
      * @param  integer $offset Page offset
@@ -44,4 +37,4 @@ interface Zend_Paginator_Adapter_Interface extends Countable
      * @return array
      */
     public function getItems($offset, $itemCountPerPage);
-}
+}