SproutCMS

This is the code documentation for the SproutCMS project

class DemoWorker

A basic demonstration of how worker jobs run, using WorkerBase

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-11-25
**/
class NewClassName extends DemoWorker {
    
    /**
    * Do the work which a worker must do
    **/
    public function run ($a, $b, $c) {
        // Method code goes here
    }
    
}
?>