parent::__construct() - does the order matter?
Posted: Thu Aug 31, 2006 4:11 pm
Does it matter whether you call the parent constructer like this:
as opposed to this:
Code: Select all
function __construct(){
// Do stuff
parent::__construct();
}Code: Select all
function __construct(){
parent::__construct();
// Do stuff
}