Completed
Pull Request — master (#56)
by AntikCz
02:29
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   +3 added lines patch added patch discarded remove patch
@@ -1628,6 +1628,9 @@
 block discarded – undo
1628 1628
 	}
1629 1629
 
1630 1630
 
1631
+	/**
1632
+	 * @param string $name
1633
+	 */
1631 1634
 	public function getRowCondition($name, $key = NULL)
1632 1635
 	{
1633 1636
 		if (!isset($this->row_conditions[$name])) {
Please login to merge, or discard this patch.