5 lines
91 B
PHP
5 lines
91 B
PHP
|
<?php
|
||
|
abstract class Parentum {
|
||
|
abstract protected function makeChild(&$args);
|
||
|
}
|
||
|
?>
|