Andi Gutmans wrote:
> Only if you use E_STRICT.

  Am I missing something (bear with me, I am still on medication :-) but
  the following code does not print a warning here:

   <?php
   error_reporting(E_STRICT);

   interface Testable {
       public function test($a, $b);
   }

   class Test implements Testable {
       public function test($a) {
       }
   }
   ?>

-- 
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