Passed
Push — dbal ( 396fa2...d36e46 )
by Greg
11:43
created
app/WebtreesSchema.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,8 @@
 block discarded – undo
107 107
         if (!Type::hasType('timestamp')) {
108 108
             Type::addType(
109 109
                 'timestamp',
110
-                new class extends Type implements PhpDateTimeMappingType {
110
+                new class extends Type implements PhpDateTimeMappingType
111
+                {
111 112
                     public function getName(): string
112 113
                     {
113 114
                         return 'timestamp';
Please login to merge, or discard this patch.
app/DBQueryBuilder.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,8 @@
 block discarded – undo
38 38
         parent::__construct($connection);
39 39
     }
40 40
 
41
-    public function from($from, $alias = null) {
41
+    public function from($from, $alias = null)
42
+    {
42 43
         parent::from($this->prefix . $from, $alias ?? $from);
43 44
     }
44 45
 
Please login to merge, or discard this patch.