From: Chad Horohoe Date: Wed, 8 Jan 2014 22:15:09 +0000 (-0800) Subject: Declare visibility on all properties in ForkController X-Git-Tag: 1.31.0-rc.0~17317^2~1 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=2a47a3e91cb89bf725233235ff27176eb9aad6eb;p=lhc%2Fweb%2Fwiklou.git Declare visibility on all properties in ForkController Grepped all of core and extensions, and nothing uses them Change-Id: I8e4f191aafffdbc2254e39bed81a5209cdf29795 --- diff --git a/includes/ForkController.php b/includes/ForkController.php index ced45af669..2d5aa4b248 100644 --- a/includes/ForkController.php +++ b/includes/ForkController.php @@ -30,11 +30,11 @@ * @ingroup Maintenance */ class ForkController { - var $children = array(); - var $termReceived = false; - var $flags = 0, $procsToStart = 0; + protected $children = array(); + protected $termReceived = false; + protected $flags = 0, $procsToStart = 0; - static $restartableSignals = array( + protected static $restartableSignals = array( SIGFPE, SIGILL, SIGSEGV,