15 lines
186 B
PHP
15 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
class HelpClass1
|
||
|
{
|
||
|
public function method(string $param = "")
|
||
|
{
|
||
|
}
|
||
|
public function test()
|
||
|
{
|
||
|
$this->method();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$a = new HelpClass1;
|
||
|
$a->method();
|