trait.colour.php

trait.colour.php

<?php

trait Colour
{

    function getColour()
    {
        return "red";
    }
    
}

?>
Comments are closed.