Prior to which version of PHP did constructors took the name of the enclosing class.
A
PHP 4
B
PHP 5
C
PHP 5.3
D
PHP 5.4
Correct Answer: PHP 5
The new unified constructors use the name __construct(). Using the old syntax, a call to a parent constructor would tie you to that particular class: parent::ShopProduct();