Declare visibility on all properties in ForkController
authorChad Horohoe <chadh@wikimedia.org>
Wed, 8 Jan 2014 22:15:09 +0000 (14:15 -0800)
committerChad Horohoe <chadh@wikimedia.org>
Wed, 8 Jan 2014 22:18:27 +0000 (14:18 -0800)
Grepped all of core and extensions, and nothing uses them

Change-Id: I8e4f191aafffdbc2254e39bed81a5209cdf29795

includes/ForkController.php

index ced45af..2d5aa4b 100644 (file)
  * @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,