]> git.mxchange.org Git - friendica.git/blobdiff - mod/worker.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / worker.php
index d6ecbecc264935036eb1427e72f65f9c4da3ad62..1bd58807895fab1ae5c6782964925ab98151774d 100644 (file)
@@ -4,11 +4,10 @@
  * @brief Module for running the worker as frontend process
  */
 
-use Friendica\Core\Worker;
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
+use Friendica\Core\Worker;
 
-function worker_init($a){
+function worker_init(){
 
        if (!Config::get("system", "frontend_worker")) {
                return;
@@ -29,7 +28,7 @@ function worker_init($a){
                return;
        }
 
-       $a->start_process();
+       Worker::startProcess();
 
        logger("Front end worker started: ".getmypid());
 
@@ -50,7 +49,7 @@ function worker_init($a){
 
        Worker::unclaimProcess();
 
-       $a->end_process();
+       Worker::endProcess();
 
        logger("Front end worker ended: ".getmypid());