Completed
Push — master ( f2ef3e...a98c98 )
by Bartko
01:49
created
tests/StefanoTreeTest/Unit/NestedSet/Adapter/Zend2Test.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @return DbAdapter
64
+     * @return Mockery\MockInterface
65 65
      */
66 66
     private function getDbAdapterMock()
67 67
     {
Please login to merge, or discard this patch.
tests/StefanoTreeTest/Unit/NestedSet/Adapter/Zend1Test.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     }
59 59
 
60 60
     /**
61
-     * @return \Zend_Db_Adapter_Pdo_Sqlite
61
+     * @return \Mockery\MockInterface
62 62
      */
63 63
     protected function getDbAdapterMock()
64 64
     {
Please login to merge, or discard this patch.
src/StefanoTree/NestedSet/Adapter/Zend1.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -527,6 +527,11 @@
 block discarded – undo
527 527
         return (0 < count($resultArray)) ? $resultArray : array();
528 528
     }
529 529
 
530
+    /**
531
+     * @param string $column
532
+     * @param integer $first
533
+     * @param integer $second
534
+     */
530 535
     protected function getWhereBetween($column, $first, $second)
531 536
     {
532 537
         $dbAdapter = $this->getDbAdapter();
Please login to merge, or discard this patch.