Completed
Branch 7-dev (bf2895)
by Oscar
03:53
created
src/FieldFactory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -98,6 +98,7 @@
 block discarded – undo
98 98
 
99 99
     /**
100 100
      * Get the field class name.
101
+     * @return string
101 102
      */
102 103
     private function getClassName(string $name, string $type): ?string
103 104
     {
Please login to merge, or discard this patch.
src/Table.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -281,6 +281,9 @@
 block discarded – undo
281 281
         return $this->fields[$field] ?? null;
282 282
     }
283 283
 
284
+    /**
285
+     * @return Table
286
+     */
284 287
     public function getJoinTable(Table $table): ?Table
285 288
     {
286 289
         $name1 = $this->getName();
Please login to merge, or discard this patch.
src/Events/BeforeCreateRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Events/CreateInsertQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Events/CreateUpdateQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Events/CreateDeleteQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Events/BeforeSaveRow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Events/CreateSelectQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Events;
5 5
 
Please login to merge, or discard this patch.
src/Query/Update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace SimpleCrud\Query;
5 5
 
Please login to merge, or discard this patch.