SproutCMS

This is the code documentation for the SproutCMS project

class WorkerLinkCheckerTest

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-08-16
**/
class NewClassName extends WorkerLinkCheckerTest {
    
    /**
    * URLs which are not okay
    **/
    public function testCheckBad ($url) {
        // Method code goes here
    }
    
    /**
    * URLs which are not okay
    **/
    public function dataCheckBad () {
        // Method code goes here
    }
    
    /**
    * URLs which are okay
    **/
    public function testCheckOkay ($url) {
        // Method code goes here
    }
    
    /**
    * URLs which are okay
    **/
    public function dataCheckOkay () {
        // Method code goes here
    }
    
}
?>