Completed
Push — master ( 6a686e...e7ebae )
by Valentin
27s queued 16s
created
src/Bridge/DataGrid/src/Writer/PostgresQueryWriter.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     protected function getExpressionOperator(Specification\Filter\Expression $filter): string
30 30
     {
31
-        if ($filter instanceof Specification\Filter\Postgres\ILike) {
31
+        if ($filter instanceof Specification\Filter\Postgres\ILike){
32 32
             return 'ILIKE';
33 33
         }
34 34
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             class_exists(SelectQuery::class)
46 46
             && $target instanceof SelectQuery
47 47
             && $target->getDriver() instanceof PostgresDriver
48
-        ) {
48
+        ){
49 49
             return true;
50 50
         }
51 51
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             class_exists(Select::class)
54 54
             && $target instanceof Select
55 55
             && $target->buildQuery()->getDriver() instanceof PostgresDriver
56
-        ) {
56
+        ){
57 57
             return true;
58 58
         }
59 59
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@
 block discarded – undo
28 28
      */
29 29
     protected function getExpressionOperator(Specification\Filter\Expression $filter): string
30 30
     {
31
-        if ($filter instanceof Specification\Filter\Postgres\ILike) {
31
+        if ($filter instanceof Specification\Filter\Postgres\ILike)
32
+        {
32 33
             return 'ILIKE';
33 34
         }
34 35
 
Please login to merge, or discard this patch.