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

* redundant phpdoc
2021-01-29 11:38:57 +01:00

14 lines
173 B
PHP

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