mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-05 22:43:52 +09:00
9 lines
114 B
PHP
9 lines
114 B
PHP
<?php
|
|
class Foo
|
|
{
|
|
public function doSomething(Bar $bar)
|
|
{
|
|
return $bar->doSomethingElse();
|
|
}
|
|
}
|