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