Completed
Pull Request — master (#81)
by Petr
11:20 queued 08:22
created
src/DataSource/DoctrineDataSource.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 
53 53
 	/**
54 54
 	 * @return Doctrine\ORM\Query
55
-	*/
55
+	 */
56 56
 	public function getQuery()
57 57
 	{
58 58
 		return $this->data_source->getQuery();
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 
10 10
 namespace Ublaboo\DataGrid\DataSource;
11 11
 
12
-use Doctrine\ORM\QueryBuilder,
13
-	Ublaboo\DataGrid\Filter,
14
-	Nette\Utils\Callback,
15
-	Doctrine;
12
+use Doctrine\ORM\QueryBuilder;
13
+use Ublaboo\DataGrid\Filter;
14
+use Nette\Utils\Callback;
15
+use Doctrine;
16 16
 
17 17
 class DoctrineDataSource implements IDataSource
18 18
 {
Please login to merge, or discard this patch.
src/DataGrid.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
 
488 488
 	/**
489 489
 	 * Set sortable handle
490
-	 * @param string $handle
490
+	 * @param string $handler
491 491
 	 */
492 492
 	public function setSortableHandler($handler = 'sort!')
493 493
 	{
@@ -1766,6 +1766,9 @@  discard block
 block discarded – undo
1766 1766
 	}
1767 1767
 
1768 1768
 
1769
+	/**
1770
+	 * @param string $name
1771
+	 */
1769 1772
 	public function getRowCondition($name, $key = NULL)
1770 1773
 	{
1771 1774
 		if (!isset($this->row_conditions[$name])) {
@@ -1799,7 +1802,6 @@  discard block
 block discarded – undo
1799 1802
 
1800 1803
 	/**
1801 1804
 	 * Order Grid to set columns hideable.
1802
-	 * @param bool $do
1803 1805
 	 */
1804 1806
 	public function setColumnsHideable()
1805 1807
 	{
Please login to merge, or discard this patch.