Completed
Push — master ( bc462e...3c2183 )
by Daniel
07:13
created
lib/Metadata/ActionMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Metadata;
6 6
 
Please login to merge, or discard this patch.
lib/Metadata/FilterMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Metadata;
6 6
 
Please login to merge, or discard this patch.
lib/Metadata/QueryMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Metadata;
6 6
 
Please login to merge, or discard this patch.
lib/Action/DeleteAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Action;
6 6
 
Please login to merge, or discard this patch.
lib/View/ActionBar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\View;
6 6
 
Please login to merge, or discard this patch.
lib/View/Paginator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\View;
6 6
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         if (null === $this->numberOfRecords) {
40 40
             throw new \RuntimeException(
41
-                'Cannot determine the last page when the total number of ' .
41
+                'Cannot determine the last page when the total number of '.
42 42
                 'records has not been provided.'
43 43
             );
44 44
         }
Please login to merge, or discard this patch.
lib/View/FilterBar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\View;
6 6
 
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function getUrlParametersForReset(): array
27 27
     {
28
-        return array_filter($this->options->getUrlParameters(), function ($key) {
28
+        return array_filter($this->options->getUrlParameters(), function($key) {
29 29
             return $key !== 'filter';
30 30
         }, ARRAY_FILTER_USE_KEY);
31 31
     }
32 32
 
33 33
     public function getUrlParametersForFilter(): array
34 34
     {
35
-        return array_filter($this->options->getUrlParameters(), function ($key) {
35
+        return array_filter($this->options->getUrlParameters(), function($key) {
36 36
             return $key === 'filter';
37 37
         }, ARRAY_FILTER_USE_KEY);
38 38
     }
Please login to merge, or discard this patch.
lib/Util/ColumnTemplateInferrer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Util;
6 6
 
Please login to merge, or discard this patch.
lib/Filter/ChoiceFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid\Filter;
6 6
 
Please login to merge, or discard this patch.