@@ -28,8 +28,6 @@ public function __construct()
2828 /**
2929 * Compile a primary key command.
3030 *
31- * @param \Illuminate\Database\Schema\Blueprint $blueprint
32- * @param \Illuminate\Support\Fluent $command
3331 * @return string
3432 */
3533 public function compilePrimary (Blueprint $ blueprint , Fluent $ command )
@@ -42,7 +40,6 @@ public function compilePrimary(Blueprint $blueprint, Fluent $command)
4240 /**
4341 * Create the column definition for a spatial Geography type.
4442 *
45- * @param \Illuminate\Support\Fluent $column
4643 * @return string
4744 */
4845 public function typeGeography (Fluent $ column )
@@ -53,7 +50,6 @@ public function typeGeography(Fluent $column)
5350 /**
5451 * Create the column definition for a spatial Point type.
5552 *
56- * @param \Illuminate\Support\Fluent $column
5753 * @return string
5854 */
5955 public function typePoint (Fluent $ column )
@@ -83,7 +79,6 @@ protected function compileCreateTable($blueprint, $command, $connection)
8379 }
8480
8581 /**
86- * @param Fluent $column
8782 * @return string
8883 */
8984 protected function getType (Fluent $ column )
@@ -105,8 +100,6 @@ protected function getType(Fluent $column)
105100 * Append the engine specifications to a command.
106101 *
107102 * @param string $sql
108- * @param \Illuminate\Database\Connection $connection
109- * @param \Illuminate\Database\Schema\Blueprint $blueprint
110103 * @return string
111104 */
112105 protected function compileCreateEngine ($ sql , Connection $ connection , Blueprint $ blueprint )
@@ -123,8 +116,6 @@ protected function compileCreateEngine($sql, Connection $connection, Blueprint $
123116 }
124117
125118 /**
126- * @param $blueprint
127- * @param $compiled
128119 * @return string
129120 *
130121 * @throws Exception
@@ -149,7 +140,6 @@ protected function insertCreateTableModifiers($blueprint, $compiled)
149140 }
150141
151142 /**
152- * @param Blueprint $blueprint
153143 * @return array
154144 *
155145 * @throws Exception
@@ -169,9 +159,6 @@ protected function getColumns(Blueprint $blueprint)
169159 }
170160
171161 /**
172- * @param Blueprint $blueprint
173- * @param Fluent $command
174- * @param $type
175162 * @return array|string|string[]
176163 */
177164 protected function compileKey (Blueprint $ blueprint , Fluent $ command , $ type )
@@ -192,7 +179,6 @@ protected function compileKey(Blueprint $blueprint, Fluent $command, $type)
192179 /**
193180 * Convert an array of column names into a delimited string (with direction parameter).
194181 *
195- * @param array $columns
196182 * @return string
197183 */
198184 protected function columnizeWithDirection (array $ columns , string $ direction )
@@ -225,8 +211,6 @@ protected function columnizeWithDirection(array $columns, string $direction)
225211 /**
226212 * Get the SQL for an auto-increment column modifier.
227213 *
228- * @param \Illuminate\Database\Schema\Blueprint $blueprint
229- * @param \Illuminate\Support\Fluent $column
230214 * @return string|null
231215 */
232216 protected function modifyIncrement (Blueprint $ blueprint , Fluent $ column )
@@ -241,8 +225,6 @@ protected function modifyIncrement(Blueprint $blueprint, Fluent $column)
241225 /**
242226 * Compile a rename table command.
243227 *
244- * @param \Illuminate\Database\Schema\Blueprint $blueprint
245- * @param \Illuminate\Support\Fluent $command
246228 * @return string
247229 */
248230 public function compileRename (Blueprint $ blueprint , Fluent $ command )
0 commit comments