mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-06 15:04:01 +09:00
7 lines
109 B
PHP
7 lines
109 B
PHP
<?php
|
|
// short desc
|
|
abstract class A {
|
|
/* abst meth: */
|
|
public static abstract function method();
|
|
}
|