blob: 1111ca659ab82e78d7de66bc020f978274b7d3d5 [file]
<?php
class Father {
static function define() { return 1; }
}
class Child extends Father {
static function define() { return parent::define(); }
}
?>