Files
2023-07-14 11:32:46 +08:00

9 lines
114 B
PHP
Executable File

<?php
class Foo
{
public function doSomething(Bar $bar)
{
return $bar->doSomethingElse();
}
}