At 23:50 07/09/2003, Attila Strauss wrote:
Hi,
are there any plans about implementing the ability to provide throws for
abstract classes?
Nope, no plans.
Zeev
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
are there any plans about implementing the ability to provide throws for
abstract classes?
Example:
---s.cut---
abstract class RDBMS_Connection_Abstract
{
abstract public function connect() throws RDBMS_Connection_Exception;
}
class RDBMS_Connection extends RDBMS_Connection_Abstract
{