class absclass { abstract public function fuc(); }
reports:
PHP Fatal error: Class absclass contains 1 abstract metho
It means that the proper of an abstract class is having at least one abstract method. So your class has either to implement the method (non abstract), or to be declared abstract.