Completed
Push — master ( 695fd2...216893 )
by Alexander
02:18
created
src/AtDataGrid/Column/Decorator/DateFormat.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @param  $format
24
+     * @param  string $format
25 25
      * @return void
26 26
      */
27 27
     public function setFormat($format)
Please login to merge, or discard this patch.
src/AtDataGrid/DataGrid.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace AtDataGrid;
4 4
 
5
-use AtDataGrid\DataSource;
6
-use AtDataGrid\Column\Column;
7
-use AtDataGrid\Filter\FilterInterface;
8
-use Zend\Db\ResultSet\ResultSet;
9
-use Zend\EventManager\EventManagerAwareTrait;
5
+use AtDataGrid\DataSource;
6
+use AtDataGrid\Column\Column;
7
+use AtDataGrid\Filter\FilterInterface;
8
+use Zend\Db\ResultSet\ResultSet;
9
+use Zend\EventManager\EventManagerAwareTrait;
10 10
 use Zend\Paginator\Paginator;
11 11
 
12 12
 class DataGrid implements \Countable, \IteratorAggregate, \ArrayAccess
Please login to merge, or discard this patch.
src/AtDataGrid/DataSource/Doctrine/QueryBuilder.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     /**
110 110
      * @param $order
111 111
      * @param array $filters
112
-     * @return $this|mixed
112
+     * @return QueryBuilder
113 113
      */
114 114
     public function prepare($order, $filters = [])
115 115
     {
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace AtDataGrid\DataSource\Doctrine;
4 4
 
5
-use AtDataGrid\DataSource\AbstractDataSource;
6
-use AtDataGrid\Column;
7
-use AtDataGrid\Filter\Doctrine2Filter;
8
-use Doctrine\ORM\EntityManager;
9
-use Doctrine\ORM\Tools\Pagination\Paginator;
5
+use AtDataGrid\DataSource\AbstractDataSource;
6
+use AtDataGrid\Column;
7
+use AtDataGrid\Filter\Doctrine2Filter;
8
+use Doctrine\ORM\EntityManager;
9
+use Doctrine\ORM\Tools\Pagination\Paginator;
10 10
 use DoctrineORMModule\Paginator\Adapter\DoctrinePaginator;
11 11
 
12 12
 class QueryBuilder extends AbstractDataSource
Please login to merge, or discard this patch.
src/AtDataGrid/Form/FormBuilderFactory.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace AtDataGrid\Form;
4 4
 
5
-use Zend\ServiceManager\FactoryInterface;
5
+use Zend\ServiceManager\FactoryInterface;
6 6
 use Zend\ServiceManager\ServiceLocatorInterface;
7 7
 
8 8
 class FormBuilderFactory implements FactoryInterface
Please login to merge, or discard this patch.
src/AtDataGrid/Manager.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * Alias for setAllowCreate
134 134
      *
135 135
      * @param bool $flag
136
-     * @return DataGrid
136
+     * @return Manager
137 137
      */
138 138
     public function allowCreate($flag = true)
139 139
     {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      * Alias for setAllowEdit
194 194
      *
195 195
      * @param bool $flag
196
-     * @return DataGrid
196
+     * @return Manager
197 197
      */
198 198
     public function allowEdit($flag = true)
199 199
     {
Please login to merge, or discard this patch.
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace AtDataGrid;
4 4
 
5
-use AtDataGrid\Filter\FilterInterface;
6
-use AtDataGrid\Form\FormBuilder;
7
-use AtDataGrid\Renderer\RendererInterface;
8
-use AtDataGrid\Row\Action;
9
-use Zend\Cache\Storage\StorageInterface;
10
-use Zend\Form\Element;
5
+use AtDataGrid\Filter\FilterInterface;
6
+use AtDataGrid\Form\FormBuilder;
7
+use AtDataGrid\Renderer\RendererInterface;
8
+use AtDataGrid\Row\Action;
9
+use Zend\Cache\Storage\StorageInterface;
10
+use Zend\Form\Element;
11 11
 use Zend\Form\Form;
12 12
 
13 13
 class Manager
Please login to merge, or discard this patch.
src/AtDataGrid/View/Helper/RowAction.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace AtDataGrid\View\Helper;
4 4
 
5
-use AtDataGrid\Row\Action;
6
-use Zend\Db\ResultSet\ResultSet;
7
-use Zend\View\Helper\AbstractHelper;
5
+use AtDataGrid\Row\Action;
6
+use Zend\Db\ResultSet\ResultSet;
7
+use Zend\View\Helper\AbstractHelper;
8 8
 use Zend\View\View;
9 9
 
10 10
 class RowAction extends AbstractHelper
Please login to merge, or discard this patch.