2017-01-19 20:18:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HelpClass2
|
|
|
|
{
|
|
|
|
protected function method(string $param = "")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
public function test()
|
|
|
|
{
|
2017-01-20 13:26:14 +00:00
|
|
|
$this->method(1,1);
|
2017-01-19 20:18:14 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-19 21:54:05 +00:00
|
|
|
$a = new HelpClass2;
|
2017-01-20 13:26:14 +00:00
|
|
|
$a
|
|
|
|
->method(
|
|
|
|
1,
|
|
|
|
array(),
|