Andi Gutmans wrote:
> And regular old-style inheritance?

  If you mean

    class Foo {
      public function doSomething($a, $b) {}
    }

    class Bar extends Foo {
      public function doSomething($c, $d, $e) {}
    }

  by "regular old-style inheritance" then no. It would not make sense to
  do so in PHP because we don't have multimethod dispatch.

-- 
Sebastian Bergmann
http://sebastian-bergmann.de/                   http://phpOpenTracker.de/

Das Buch zu PHP 5: http://professionelle-softwareentwicklung-mit-php5.de/

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

Reply via email to