From d96b827e3265edbcd1b5fbf59ca4071438622a1d Mon Sep 17 00:00:00 2001 From: Michael <heluecht@pirati.ca> Date: Sun, 27 Nov 2016 22:52:21 +0000 Subject: [PATCH] Changed documentation --- util/daemon.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/util/daemon.php b/util/daemon.php index d1eb70d8b1..e93306df12 100644 --- a/util/daemon.php +++ b/util/daemon.php @@ -1,8 +1,10 @@ <?php -/* -Run the poller from a daemon. -This script was taken from http://php.net/manual/en/function.pcntl-fork.php -*/ +/** + * @file util/daemon.php + * @brief Run the poller from a daemon. + * + * This script was taken from http://php.net/manual/en/function.pcntl-fork.php + */ function shutdown() { posix_kill(posix_getpid(), SIGHUP); }