aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Maintenance/ForkController.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Maintenance/ForkController.php')
-rw-r--r--includes/Maintenance/ForkController.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/includes/Maintenance/ForkController.php b/includes/Maintenance/ForkController.php
index ccc8b68267b3..ac72ed1826dd 100644
--- a/includes/Maintenance/ForkController.php
+++ b/includes/Maintenance/ForkController.php
@@ -1,7 +1,5 @@
<?php
/**
- * Class for managing forking command line scripts.
- *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@@ -28,9 +26,10 @@ use ObjectCache;
use RedisConnectionPool;
/**
- * Class for managing forking command line scripts.
- * Currently just does forking and process control, but it could easily be extended
- * to provide IPC and job dispatch.
+ * Manage forking inside CLI maintenance scripts.
+ *
+ * Only handles forking and process control. In the future, this could
+ * be extended to provide IPC and job dispatch.
*
* This class requires the posix and pcntl extensions.
*