13 lines
152 B
PHP
13 lines
152 B
PHP
|
<?php
|
||
|
|
||
|
class HelpClass2
|
||
|
{
|
||
|
protected function method(string $param = "")
|
||
|
{
|
||
|
}
|
||
|
public function test()
|
||
|
{
|
||
|
$this->method(
|
||
|
}
|
||
|
}
|