-
-
Notifications
You must be signed in to change notification settings - Fork 60
add PhpDoc @deprecated #1592
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
base: master
Are you sure you want to change the base?
add PhpDoc @deprecated #1592
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,6 +27,7 @@ | |
| * @package kernel | ||
| * @subpackage core | ||
| * @author Goghs (http://www.eqiao.com/) | ||
| * @deprecated | ||
|
||
| */ | ||
| class ErrorHandler | ||
| { | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -33,6 +33,7 @@ | |||||
| * @package kernel | ||||||
| * @subpackage comments | ||||||
| * @access public | ||||||
| * @deprecated | ||||||
|
||||||
| * @deprecated | |
| * @deprecated since 2.5.4 Use \XoopsComment in /kernel/comment.php instead. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ | |
|
|
||
| /** | ||
| * Class XoopsTopic | ||
| * @deprecated | ||
|
||
| */ | ||
| class XoopsTopic | ||
| { | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -190,6 +190,7 @@ function xoops_module_get_admin_menu() | |||||
| * | ||||||
| * @param string $content | ||||||
| * @return bool | ||||||
| * @deprecated | ||||||
|
||||||
| * @deprecated | |
| * @deprecated since version 2.5.0 This function is deprecated and should not be used. No replacement available. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The
@deprecatedtag should follow PHPDoc standards with additional information. According to PHPDoc standards, the@deprecatedtag should include a version number and optionally a description or replacement suggestion. For example:@deprecated since version X.X.X Use AlternativeClass instead.This applies to all deprecated items in this file.