The class looks like this:
class do{
function do_something($what){
...
echo $what;
}
function do_other_stuff($what){
...
echo $what;
}
}
and I would use it like if(do::do_something('whatever'))...
or do::do_other_stuff('whatever')...
Is there a point using a class like this?
basically I'm just using its functions just like I would use them if the functions are outside the class.