[EMAIL PROTECTED]:~/devel/php/tests > cat inheritance.php 
<?php
  class Foo {
    function __construct($foo) {
    }
  }
  
  class Bar extends Foo {
    function __construct($foo, $bar) {  
      // Add = NULL after $bar to make it work
    }
  }
?>
[EMAIL PROTECTED]:~/devel/php/tests > php-dev inheritance.php 

Fatal error: Declaration of Bar::__construct() must be compatible with
that of Foo::__construct() in
/usr/home/thekid/devel/php/tests/inheritance.php on line 10

Is this really necessary?

- Timm

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to