mageplus / mageplus

A community owned and driven, enterprise fork of Magento Community Edition 1.7.0
Other
366 stars 83 forks source link

PHP 5.4: Fixing contrustructor signature #122

Closed lstrojny closed 11 years ago

lstrojny commented 11 years ago

This patch fixes the constructor signature which would otherwise lead to this error under PHP 5.4:

PHP Fatal error:  Declaration of Zend_Pdf_FileParserDataSource_File::__construct() must be compatible with Zend_Pdf_FileParserDataSource::__construct() in /var/www/akjumii/public/shop/lib/Zend/Pdf/FileParserDataSource/File.php on line 41

The problem is, that Zend_Pdf_FileParserDataSource declares an abstract constructor, which is stupid but it is how it is.