1<?php 2// short desc 3abstract class A { 4 /* abst meth: */ 5 public static abstract function method(); 6} 7