I am extending one of the SPL (Standard PHP Library) classes and I am unable to call the parent\'s constructor. Here is the error I am getting:
Fatal erro
This error gets thrown, usually, when the parent class being referenced in parent::__construct() actually has no __construct() function.
parent
parent::__construct()
__construct()