1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/fixtures/stubs/partial_class.php
orklah ead107fa9e
More return types (#4173)
* add native return types

* redundant phpdoc
2020-09-12 11:24:05 -04:00

14 lines
173 B
PHP

<?php
namespace Foo;
class PartiallyStubbedClass
{
/**
* @param class-string $a
*
*/
public function foo($a): PartiallyStubbedClass
{
}
}