Merge "Fix StatusValue phpdoc"
This commit is contained in:
commit
cd6e6c40de
1 changed files with 2 additions and 2 deletions
|
|
@ -58,7 +58,7 @@ class StatusValue {
|
|||
* Factory function for fatal errors
|
||||
*
|
||||
* @param string|MessageSpecifier $message Message key or object
|
||||
* @return Status
|
||||
* @return StatusValue
|
||||
*/
|
||||
public static function newFatal( $message /*, parameters...*/ ) {
|
||||
$params = func_get_args();
|
||||
|
|
@ -71,7 +71,7 @@ class StatusValue {
|
|||
* Factory function for good results
|
||||
*
|
||||
* @param mixed $value
|
||||
* @return Status
|
||||
* @return StatusValue
|
||||
*/
|
||||
public static function newGood( $value = null ) {
|
||||
$result = new static();
|
||||
|
|
|
|||
Loading…
Reference in a new issue