12 lines
171 B
PHP
12 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
class NewStatic {
|
||
|
public static function main()
|
||
|
{
|
||
|
$command = new static;
|
||
|
return $command->foo();
|
||
|
}
|
||
|
|
||
|
private function foo() {
|
||
|
}
|
||
|
}
|