Skip to content

Commit 0e77852

Browse files
committed
chore: update method annotations in MySQLColumn for improved clarity
1 parent 0129e7f commit 0e77852

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/Driver/MySQL/Schema/MySQLColumn.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
* Attention! You can use only one timestamp or datetime with DATETIME_NOW setting! Thought, it will
2424
* work on multiple fields with MySQL 5.6.6+ version.
2525
*
26-
* @method $this|AbstractColumn primary(int $size, bool $unsigned = false, $zerofill = false)
27-
* @method $this|AbstractColumn smallPrimary(int $size, bool $unsigned = false, $zerofill = false)
28-
* @method $this|AbstractColumn bigPrimary(int $size, bool $unsigned = false, $zerofill = false)
29-
* @method $this|AbstractColumn integer(int $size, bool $unsigned = false, $zerofill = false)
30-
* @method $this|AbstractColumn tinyInteger(int $size, bool $unsigned = false, $zerofill = false)
31-
* @method $this|AbstractColumn smallInteger(int $size, bool $unsigned = false, $zerofill = false)
32-
* @method $this|AbstractColumn bigInteger(int $size, bool $unsigned = false, $zerofill = false)
33-
* @method $this|AbstractColumn unsigned(bool $value)
34-
* @method $this|AbstractColumn zerofill(bool $value)
35-
* @method $this|AbstractColumn comment(string $value)
36-
* @method $this|AbstractColumn after(string $column)
26+
* @method $this primary(int $size, bool $unsigned = false, $zerofill = false)
27+
* @method $this smallPrimary(int $size, bool $unsigned = false, $zerofill = false)
28+
* @method $this bigPrimary(int $size, bool $unsigned = false, $zerofill = false)
29+
* @method $this integer(int $size, bool $unsigned = false, $zerofill = false)
30+
* @method $this tinyInteger(int $size, bool $unsigned = false, $zerofill = false)
31+
* @method $this smallInteger(int $size, bool $unsigned = false, $zerofill = false)
32+
* @method $this bigInteger(int $size, bool $unsigned = false, $zerofill = false)
33+
* @method $this unsigned(bool $value)
34+
* @method $this zerofill(bool $value)
35+
* @method $this comment(string $value)
36+
* @method $this after(string $column)
3737
*/
3838
class MySQLColumn extends AbstractColumn
3939
{

0 commit comments

Comments
 (0)