Completed
Push — master ( 6fc42f...bce972 )
by Daniel
02:28
created
lib/Filter/NumberFilter.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\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Filter/StringFilter.php 1 patch
Spacing   +5 added lines, -5 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\Filter;
6 6
 
@@ -93,13 +93,13 @@  discard block
 block discarded – undo
93 93
             case self::TYPE_NOT_EMPTY:
94 94
                 return;
95 95
             case self::TYPE_CONTAINS:
96
-                return '%' . $value . '%';
96
+                return '%'.$value.'%';
97 97
             case self::TYPE_NOT_CONTAINS:
98
-                return '%' . $value . '%';
98
+                return '%'.$value.'%';
99 99
             case self::TYPE_STARTS_WITH:
100
-                return $value . '%';
100
+                return $value.'%';
101 101
             case self::TYPE_ENDS_WITH:
102
-                return '%' . $value;
102
+                return '%'.$value;
103 103
             case self::TYPE_IN:
104 104
                 return array_map('trim', explode(',', $value));
105 105
             case self::TYPE_NOT_IN:
Please login to merge, or discard this patch.
lib/Filter/DateFilter.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\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/FilterData.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\Cell;
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\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Column/AbstractColumn.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\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/GridViewFactory.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;
6 6
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 }
51 51
 
52 52
                 throw new \InvalidArgumentException(sprintf(
53
-                    'Invalid filter form: ' . implode(', ', $message)
53
+                    'Invalid filter form: '.implode(', ', $message)
54 54
                 ));
55 55
             }
56 56
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                     $criteria['criteria'] = $query->getExpression();
73 73
                 } else {
74 74
                     // filter and user criterias need to be combined
75
-                    $criteria['criteria'] = new Composite(Composite::AND, [$query->getExpression(), $criteria['criteria']]);
75
+                    $criteria['criteria'] = new Composite(Composite:: AND , [$query->getExpression(), $criteria['criteria']]);
76 76
                 }
77 77
             }
78 78
         }
Please login to merge, or discard this patch.
lib/Column/TextColumn.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\Cell;
6 6
 
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\Cell;
6 6
 
Please login to merge, or discard this patch.