Completed
Push — master ( 75f0dd...e48086 )
by Sam
02:05
created
src/DB/Column.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	/**
193 193
 	 * Get the valid options for this column; only applies to ENUM and SET.
194 194
 	 *
195
-	 * @return array The available options.
195
+	 * @return string[] The available options.
196 196
 	 */
197 197
 	public function get_options() {
198 198
 		return $this->options;
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 	/**
352 352
 	 * Get the default value for this column.
353 353
 	 *
354
-	 * @return mixed
354
+	 * @return string|null
355 355
 	 */
356 356
 	public function get_default() {
357 357
 		if ( 'CURRENT_TIMESTAMP' === $this->default_value ) {
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 	/**
364 364
 	 * Get this column's size, or (for ENUM columns) its CSV options string.
365 365
 	 *
366
-	 * @return int|string The size of this column.
366
+	 * @return string|null The size of this column.
367 367
 	 */
368 368
 	public function get_size() {
369 369
 		$size = $this->size;
Please login to merge, or discard this patch.