mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
ead107fa9e
* add native return types * redundant phpdoc
14 lines
173 B
PHP
14 lines
173 B
PHP
<?php
|
|
namespace Foo;
|
|
|
|
class PartiallyStubbedClass
|
|
{
|
|
/**
|
|
* @param class-string $a
|
|
*
|
|
*/
|
|
public function foo($a): PartiallyStubbedClass
|
|
{
|
|
}
|
|
}
|