2017-01-19 20:18:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HelpClass1
|
|
|
|
{
|
2017-01-19 21:54:05 +00:00
|
|
|
public function method(string $param = "")
|
2017-01-19 20:18:14 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
public function test()
|
|
|
|
{
|
|
|
|
$this->method();
|
|
|
|
}
|
|
|
|
}
|
2017-01-19 21:54:05 +00:00
|
|
|
|
|
|
|
$a = new HelpClass1;
|
2017-01-21 20:25:44 +00:00
|
|
|
$a->method();
|