Test Failed
Branch master (7ddde4)
by Janis
02:30
created
Category
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/ColumnTraitInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
      *
11 11
      * @return $this
12 12
      */
13
-    public function column($column, bool $clearAll = false);
13
+    public function column ($column, bool $clearAll = false);
14 14
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/SetTraitInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
      *
11 11
      * @return $this
12 12
      */
13
-    public function set(string $column, $value);
13
+    public function set (string $column, $value);
14 14
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/WhereTraitInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      *
11 11
      * @return $this
12 12
      */
13
-    public function where(string $condition, array $bind = []);
13
+    public function where (string $condition, array $bind = []);
14 14
 
15 15
     /**
16 16
      * @param string $column
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      *
19 19
      * @return $this
20 20
      */
21
-    public function whereIn(string $column, array $params = []);
21
+    public function whereIn (string $column, array $params = []);
22 22
 
23 23
     /**
24 24
      * @param string $column
@@ -26,5 +26,5 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @return $this
28 28
      */
29
-    public function whereNotIn(string $column, array $params = []);
29
+    public function whereNotIn (string $column, array $params = []);
30 30
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/GroupByTraitInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,5 +9,5 @@
 block discarded – undo
9 9
      *
10 10
      * @return $this
11 11
      */
12
-    public function groupBy($groupBy);
12
+    public function groupBy ($groupBy);
13 13
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/JoinTraitInterface.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      *
13 13
      * @return $this
14 14
      */
15
-    public function join(string $join, string $tableName, string $onCondition, array $bind = []);
15
+    public function join (string $join, string $tableName, string $onCondition, array $bind = []);
16 16
 
17 17
     /**
18 18
      * @param string $join
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @return $this
25 25
      */
26
-    public function joinAs(string $join, string $tableName, string $alias, string $onCondition, array $bind = []);
26
+    public function joinAs (string $join, string $tableName, string $alias, string $onCondition, array $bind = []);
27 27
 
28 28
     /**
29 29
      * @param string $tableName
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @return $this
34 34
      */
35
-    public function innerJoin(string $tableName, string $onCondition, array $bind = []);
35
+    public function innerJoin (string $tableName, string $onCondition, array $bind = []);
36 36
 
37 37
     /**
38 38
      * @param string $tableName
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @return $this
44 44
      */
45
-    public function innerJoinAs(string $tableName, string $alias, string $onCondition, array $bind = []);
45
+    public function innerJoinAs (string $tableName, string $alias, string $onCondition, array $bind = []);
46 46
 
47 47
     /**
48 48
      * @param string $tableName
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @return $this
53 53
      */
54
-    public function leftJoin(string $tableName, string $onCondition, array $bind = []);
54
+    public function leftJoin (string $tableName, string $onCondition, array $bind = []);
55 55
 
56 56
     /**
57 57
      * @param string $tableName
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @return $this
63 63
      */
64
-    public function leftJoinAs(string $tableName, string $alias, string $onCondition, array $bind = []);
64
+    public function leftJoinAs (string $tableName, string $alias, string $onCondition, array $bind = []);
65 65
 
66 66
     /**
67 67
      * @param string $tableName
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @return $this
72 72
      */
73
-    public function rightJoin(string $tableName, string $onCondition, array $bind = []);
73
+    public function rightJoin (string $tableName, string $onCondition, array $bind = []);
74 74
 
75 75
     /**
76 76
      * @param string $tableName
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @return $this
82 82
      */
83
-    public function rightJoinAs(string $tableName, string $alias, string $onCondition, array $bind = []);
83
+    public function rightJoinAs (string $tableName, string $alias, string $onCondition, array $bind = []);
84 84
 
85 85
     /**
86 86
      * @param string $tableName
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      *
90 90
      * @return $this
91 91
      */
92
-    public function crossJoin(string $tableName, string $onCondition, array $bind = []);
92
+    public function crossJoin (string $tableName, string $onCondition, array $bind = []);
93 93
 
94 94
     /**
95 95
      * @param string $tableName
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @return $this
101 101
      */
102
-    public function crossJoinAs(string $tableName, string $alias, string $onCondition, array $bind = []);
102
+    public function crossJoinAs (string $tableName, string $alias, string $onCondition, array $bind = []);
103 103
 
104 104
     /**
105 105
      * @param string $tableName
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      *
109 109
      * @return $this
110 110
      */
111
-    public function fullOuterJoin(string $tableName, string $onCondition, array $bind = []);
111
+    public function fullOuterJoin (string $tableName, string $onCondition, array $bind = []);
112 112
 
113 113
     /**
114 114
      * @param string $tableName
@@ -118,5 +118,5 @@  discard block
 block discarded – undo
118 118
      *
119 119
      * @return $this
120 120
      */
121
-    public function fullOuterJoinAs(string $tableName, string $alias, string $onCondition, array $bind = []);
121
+    public function fullOuterJoinAs (string $tableName, string $alias, string $onCondition, array $bind = []);
122 122
 }
Please login to merge, or discard this patch.
MySQL/QueryBuilder/Traits/Interfaces/OnDuplicateKeyUpdateTraitInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
      *
11 11
      * @return $this
12 12
      */
13
-    public function onDuplicateKeyUpdate(string $column, $value);
13
+    public function onDuplicateKeyUpdate (string $column, $value);
14 14
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/BindTraitInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
      *
10 10
      * @return $this
11 11
      */
12
-    public function bind(array $bind = []);
12
+    public function bind (array $bind = []);
13 13
 
14 14
     /**
15 15
      * @return array
16 16
      */
17
-    public function bindData(): array;
17
+    public function bindData (): array;
18 18
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/LimitOffsetTraitInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,19 +10,19 @@
 block discarded – undo
10 10
      *
11 11
      * @return $this
12 12
      */
13
-    public function limitWithOffset(int $limit, int $offset);
13
+    public function limitWithOffset (int $limit, int $offset);
14 14
 
15 15
     /**
16 16
      * @param int $offset
17 17
      *
18 18
      * @return $this
19 19
      */
20
-    public function offset(int $offset);
20
+    public function offset (int $offset);
21 21
 
22 22
     /**
23 23
      * @param int $limit
24 24
      *
25 25
      * @return $this
26 26
      */
27
-    public function limit(int $limit);
27
+    public function limit (int $limit);
28 28
 }
Please login to merge, or discard this patch.
src/Dms/MySQL/QueryBuilder/Traits/Interfaces/OrderByTraitInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,5 +12,5 @@
 block discarded – undo
12 12
      *
13 13
      * @return $this
14 14
      */
15
-    public function orderBy($orderBy, string $keyword = KeywordEnum::ASC);
15
+    public function orderBy ($orderBy, string $keyword = KeywordEnum::ASC);
16 16
 }
Please login to merge, or discard this patch.