From: Umherirrender Date: Sun, 24 Jun 2018 20:03:48 +0000 (+0200) Subject: Document return of void in Maintenance::execute X-Git-Tag: 1.34.0-rc.0~4864^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=b4b1e6d698bd9760e8d73be26159aa8dcd15ff14;p=lhc%2Fweb%2Fwiklou.git Document return of void in Maintenance::execute Change-Id: I3309bf7c57b5f9304d1fb3ad55d024bec4a43bf5 --- diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 245bb47399..7e5aa318ef 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -203,7 +203,7 @@ abstract class Maintenance { /** * Do the actual work. All child classes will need to implement this * - * @return bool|null True for success, false for failure. Not returning + * @return bool|null|void True for success, false for failure. Not returning * a value, or returning null, is also interpreted as success. Returning * false for failure will cause doMaintenance.php to exit the process * with a non-zero exit status.