Completed
Pull Request — master (#73)
by Martin
02:44
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, -1 removed lines patch added patch discarded remove patch
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
 	/**
514 514
 	 * Set sortable handle
515
-	 * @param string $handle
515
+	 * @param string $handler
516 516
 	 */
517 517
 	public function setSortableHandler($handler = 'sort!')
518 518
 	{
@@ -1707,6 +1707,9 @@  discard block
 block discarded – undo
1707 1707
 	}
1708 1708
 
1709 1709
 
1710
+	/**
1711
+	 * @param string $name
1712
+	 */
1710 1713
 	public function getRowCondition($name, $key = NULL)
1711 1714
 	{
1712 1715
 		if (!isset($this->row_conditions[$name])) {
Please login to merge, or discard this patch.