Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value. Constructors do not have meaningful return values, anything that is returned from here is discarded.

See #30799.


git-svn-id: https://develop.svn.wordpress.org/trunk@31126 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2015-01-10 06:53:48 +00:00
parent cb85e15f06
commit 349e5cb318
13 changed files with 4 additions and 20 deletions

View File

@@ -53,7 +53,6 @@ class WP_Error {
* @param string|int $code Error code
* @param string $message Error message
* @param mixed $data Optional. Error data.
* @return WP_Error
*/
public function __construct( $code = '', $message = '', $data = '' ) {
if ( empty($code) )