

class MyCustomClassName
{
public function __construct()
{
}
public function whatever_whatever(){
// Code goes here. And can use anything from the construct. The construct will always load first
}
}
class MyCustomClassName
{
public function __construct()
{
}
public function whatever_whatever(){
// Code goes here. And can use anything from the construct. The construct will always load first
}
}
class MyCustomClassName { public function __construct() { } public function whatever_whatever(){ // Code goes here. And can use anything from the construct. The construct will always load first } }