Passed
Pull Request — master (#83)
by Korotkov
11:39
created
app/Containers/Web/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     'services'    => [
21 21
         'factory'  => StdFactory::class,
22
-        'callable' => function (){
22
+        'callable' => function() {
23 23
             $std = new stdClass;
24 24
             $std->method = __METHOD__ . '::Created from waiting';
25 25
     
Please login to merge, or discard this patch.
app/Ship/Utils/Database/Driver/PgSQL.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class PgSQL
8 8
 {
9
-    public function __construct(protected $table){}
9
+    public function __construct(protected $table) {}
10 10
 
11 11
     public function isTable()
12 12
     {
Please login to merge, or discard this patch.
app/Ship/Utils/Database/Driver/SQLite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class SQLite
8 8
 {
9
-    public function __construct(protected $table){}
9
+    public function __construct(protected $table) {}
10 10
 
11 11
     public function up(): void
12 12
     {
Please login to merge, or discard this patch.
app/Ship/Utils/Database/Driver/MySQL.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class MySQL
8 8
 {
9
-    public function __construct(protected $table){}
9
+    public function __construct(protected $table) {}
10 10
 
11 11
     public function isTable()
12 12
     {
Please login to merge, or discard this patch.