Completed
Push — develop ( d0fbe3...729812 )
by Bartko
14:43
created
src/StefanoTree/NestedSet/Adapter/Doctrine2DBALAdapter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -362,6 +362,9 @@
 block discarded – undo
362 362
         $connection->executeUpdate($sql, $params);
363 363
     }
364 364
 
365
+    /**
366
+     * @param integer $scope
367
+     */
365 368
     public function getRoots($scope=null)
366 369
     {
367 370
         $options = $this->getOptions();
Please login to merge, or discard this patch.
src/StefanoTree/NestedSet/Adapter/Zend1DbAdapter.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -181,6 +181,9 @@  discard block
 block discarded – undo
181 181
         $dbAdapter->update($options->getTableName(), $bind, $where);
182 182
     }
183 183
 
184
+    /**
185
+     * @param integer $scope
186
+     */
184 187
     public function getRoots($scope=null)
185 188
     {
186 189
         $options = $this->getOptions();
@@ -489,6 +492,9 @@  discard block
 block discarded – undo
489 492
         }
490 493
     }
491 494
 
495
+    /**
496
+     * @param string $column
497
+     */
492 498
     protected function getWhereBetween($column, $first, $second)
493 499
     {
494 500
         $dbAdapter = $this->getDbAdapter();
Please login to merge, or discard this patch.
src/StefanoTree/NestedSet/Adapter/Zend2DbAdapter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -363,6 +363,9 @@
 block discarded – undo
363 363
                   ->execute($binds);
364 364
     }
365 365
 
366
+    /**
367
+     * @param integer $scope
368
+     */
366 369
     public function getRoots($scope=null)
367 370
     {
368 371
         $options = $this->getOptions();
Please login to merge, or discard this patch.