<?php interface StaticInterface { public static function interfaceMethod(); } class MyProvider implements StaticInterface { public static function interfaceMethod() {} } // Alternatively: (comment out the above to run) /* abstract class AbstractStaticProvider { abstract public static function abstractMethod(); } class AlternativeProvider extends AbstractStaticProvider { } */
You have javascript disabled. You will not be able to edit any code.