Andrei Zmievski wrote:
abstract class BasePeer {

 // ...
 public static function doDelete(Criteria $criteria, Connection $con) {
  // ...
 }

}

class AuthorPeer extends BasePeer {

 public static function doDelete(Criteria $criteria, $con = null) {
    if ($con === null) {
       $con = Transaction::begin();
    }
    // ...
    parent::doDelete($criteria, $con);
 }
}


Wow. When did Java get $ for variables?


Just about the same time that Apache Torque got ported to PHP5 ;)

Hans

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



Reply via email to