psalm-plugin-symfony/tests/fixture/DummyPrivateService.php
Farhad Safarov 37912ba88f
test container support (#66)
* test container support

* no message

* no message
2020-08-03 17:14:55 +03:00

12 lines
156 B
PHP

<?php
namespace Psalm\SymfonyPsalmPlugin\Tests\Fixture;
class DummyPrivateService
{
public function foo(): string
{
return 'foo';
}
}