Completed
Push — master ( 7ddde4...ca8574 )
by Janis
41s
created
tests/Unit/Dms/MySQL/QueryBuilder/TraitsTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,8 @@
 block discarded – undo
9 9
 {
10 10
     public function test()
11 11
     {
12
-        $traitsClass = new class () {
12
+        $traitsClass = new class ()
13
+        {
13 14
             use Traits;
14 15
         };
15 16
         
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/BindTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function setUp()
27 27
     {
28
-        $this->bindTraitClass = new class (BindTraitTest::BIND_DEFAULT) {
28
+        $this->bindTraitClass = new class (BindTraitTest::BIND_DEFAULT)
29
+        {
29 30
             use BindTrait;
30 31
 
31 32
             /**
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/ValueTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@
 block discarded – undo
27 27
 
28 28
     public function setUp()
29 29
     {
30
-        $this->valueTraitClass = new class (ValueTraitTest::VALUE_DEFAULT, ValueTraitTest::VALUE_BIND_DEFAULT) {
30
+        $this->valueTraitClass = new class (ValueTraitTest::VALUE_DEFAULT, ValueTraitTest::VALUE_BIND_DEFAULT)
31
+        {
31 32
             use ValueTrait;
32 33
 
33 34
             /**
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/ColumnTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function setUp()
27 27
     {
28
-        $this->columnTraitClass = new class (ColumnTraitTest::COLUMN_DEFAULT) {
28
+        $this->columnTraitClass = new class (ColumnTraitTest::COLUMN_DEFAULT)
29
+        {
29 30
             use ColumnTrait;
30 31
 
31 32
             /**
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/GroupByTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
 
27 27
     public function setUp()
28 28
     {
29
-        $this->groupByTraitClass = new class (GroupByTraitTest::GROUP_BY_DEFAULT) {
29
+        $this->groupByTraitClass = new class (GroupByTraitTest::GROUP_BY_DEFAULT)
30
+        {
30 31
             use GroupByTrait;
31 32
 
32 33
             /**
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/CommandTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@
 block discarded – undo
14 14
 
15 15
     public function setUp()
16 16
     {
17
-        $this->commandTraitClass = new class () {
17
+        $this->commandTraitClass = new class ()
18
+        {
18 19
             use CommandTrait;
19 20
 
20 21
             /**
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/SetTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,8 @@
 block discarded – undo
22 22
 
23 23
     public function setUp()
24 24
     {
25
-        $this->setTraitClass = new class (SetTraitTest::SET_BIND_DEFAULT, SetTraitTest::SET_DEFAULT) {
25
+        $this->setTraitClass = new class (SetTraitTest::SET_BIND_DEFAULT, SetTraitTest::SET_DEFAULT)
26
+        {
26 27
             use BindTrait;
27 28
             use SetTrait;
28 29
 
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/UnionTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,8 @@
 block discarded – undo
36 36
         $this->queryBuilder->method('bindData')->willReturn(static::QUERY_BUILDER_BIND_DATA);
37 37
         $this->queryBuilder->method('buildQuery')->willReturn(static::QUERY_BUILDER_QUERY);
38 38
 
39
-        $this->unionTraitClass = new class () {
39
+        $this->unionTraitClass = new class ()
40
+        {
40 41
             use BindTrait;
41 42
             use UnionTrait;
42 43
 
Please login to merge, or discard this patch.
tests/Unit/Dms/MySQL/QueryBuilder/Traits/TableTraitTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
 
27 27
     public function setUp()
28 28
     {
29
-        $this->tableTraitClass = new class (TableTraitTest::TABLE_DEFAULT) {
29
+        $this->tableTraitClass = new class (TableTraitTest::TABLE_DEFAULT)
30
+        {
30 31
             use TableTrait;
31 32
 
32 33
             /**
Please login to merge, or discard this patch.