Opened 6 months ago
Closed 6 months ago
#48613 closed defect (bug) (fixed)
Return type of _admin_notice_post_locked unknown phpdoc keyword
Reported by: | diddledan | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.4 | Priority: | normal |
Severity: | trivial | Version: | |
Component: | Administration | Keywords: | has-patch |
Focuses: | docs | Cc: |
Description
In wp-admin/includes/post.php
the return type of _admin_notice_post_locked
is documented as none
, which is not a valid keyword according to the phpdoc specification: https://docs.phpdoc.org/guides/types.html
The attached patch corrects none
to be void
. Alternatively the @return
documentation tag might be removed altogether for the same effect.
Attachments (1)
Change History (4)
#2
@
6 months ago
I think this can just be removed. Per the documentation standards:
Note:
@return void
should not be used outside of the default bundled themes.
Note: See
TracTickets for help on using
tickets.
Patch to set return type to void