Browse Source

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 15 years ago
parent
commit
de17b2a709
1 changed files with 1 additions and 8 deletions
  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
 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.
      * Returns an collection of items for a page.
      *
      *
      * @param  integer $offset Page offset
      * @param  integer $offset Page offset
@@ -44,4 +37,4 @@ interface Zend_Paginator_Adapter_Interface extends Countable
      * @return array
      * @return array
      */
      */
     public function getItems($offset, $itemCountPerPage);
     public function getItems($offset, $itemCountPerPage);
-}
+}