gmarche/vendor/phpunit/phpunit-mock-objects/tests/_fixture/ClassWithSelfTypeHint.php

8 lines
85 B
PHP
Raw Normal View History

2019-10-25 00:13:47 +02:00
<?php
class ClassWithSelfTypeHint
{
public function foo(self $foo)
{
}
}