Adding a no-op constructor for Object. Fixes issues where numerous sub-classes break because of a missing constructor in Object.

This commit is contained in:
Mark Story 2010-04-18 01:12:44 -04:00
parent 146ec004eb
commit 40e310c79b

View file

@ -32,6 +32,15 @@
*/
class Object {
/**
* constructor, no-op
*
* @return void
*/
public function __construct() {
}
/**
* Object-to-string conversion.
* Each class can override this method as necessary.