Passed
Pull Request — master (#13)
by David
02:40
created
src/TdbmFluidColumn.php 2 patches
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@  discard block
 block discarded – undo
64 64
         return $this->getOptions($options);
65 65
     }
66 66
 
67
+    /**
68
+     * @param integer $length
69
+     */
67 70
     public function string(?int $length = null, bool $fixed = false): TdbmFluidColumnOptions
68 71
     {
69 72
         $options = $this->fluidColumn->string($length, $fixed);
@@ -82,6 +85,9 @@  discard block
 block discarded – undo
82 85
         return $this->getOptions($options);
83 86
     }
84 87
 
88
+    /**
89
+     * @param integer $length
90
+     */
85 91
     public function binary(?int $length = null, bool $fixed = false): TdbmFluidColumnOptions
86 92
     {
87 93
         $options = $this->fluidColumn->binary($length, $fixed);
@@ -184,6 +190,9 @@  discard block
 block discarded – undo
184 190
         return $this->getOptions($options);
185 191
     }
186 192
 
193
+    /**
194
+     * @param string $constraintName
195
+     */
187 196
     public function references(string $tableName, ?string $constraintName = null, string $onUpdate = 'RESTRICT', string $onDelete = 'RESTRICT'): TdbmFluidColumnOptions
188 197
     {
189 198
         $options = $this->fluidColumn->references($tableName, $constraintName, $onUpdate, $onDelete);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 
7 7
 use Doctrine\DBAL\Schema\Column;
8
-use Doctrine\DBAL\Schema\Table;
9 8
 
10 9
 class TdbmFluidColumn
11 10
 {
Please login to merge, or discard this patch.