Skip to content

fix: @links in comment in Column #6008

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/Schema/Column.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Column extends AbstractAsset
protected $_comment;

/**
* @deprecated Use {@link $_platformOptions instead}
* @deprecated Use {@link $_platformOptions} instead
*
* @var mixed[]
*/
Expand Down Expand Up @@ -353,7 +353,7 @@ public function getComment()
}

/**
* @deprecated Use {@link setPlatformOption() instead}
* @deprecated Use {@link setPlatformOption()} instead
*
* @param string $name
* @param mixed $value
Expand All @@ -374,7 +374,7 @@ public function setCustomSchemaOption($name, $value)
}

/**
* @deprecated Use {@link hasPlatformOption() instead}
* @deprecated Use {@link hasPlatformOption()} instead
*
* @param string $name
*
Expand All @@ -392,7 +392,7 @@ public function hasCustomSchemaOption($name)
}

/**
* @deprecated Use {@link getPlatformOption() instead}
* @deprecated Use {@link getPlatformOption()} instead
*
* @param string $name
*
Expand All @@ -410,7 +410,7 @@ public function getCustomSchemaOption($name)
}

/**
* @deprecated Use {@link setPlatformOptions() instead}
* @deprecated Use {@link setPlatformOptions()} instead
*
* @param mixed[] $customSchemaOptions
*
Expand All @@ -430,7 +430,7 @@ public function setCustomSchemaOptions(array $customSchemaOptions)
}

/**
* @deprecated Use {@link getPlatformOptions() instead}
* @deprecated Use {@link getPlatformOptions()} instead
*
* @return mixed[]
*/
Expand Down