Let's say I have got the following class:
class Test
{
function __construct()
{
// initialize some variable
$this->run();
}
function run()
{
// do some stuff
$this->handle();
}
function handle()
{
}
}
Normally I would create an instance like:
$test = new Test();
However I don't really need the $test anywhere since the functions in the class do all the work once and after that I won't need the instance of the class anymore.
What should I do in this situation or should I just do: $test = new Test();
I hope it makes sense what I'm trying to say if not please tell me.
