mirror of
https://github.com/danog/psalm-plugin-symfony.git
synced 2024-12-04 02:17:50 +01:00
37912ba88f
* test container support * no message * no message
12 lines
156 B
PHP
12 lines
156 B
PHP
<?php
|
|
|
|
namespace Psalm\SymfonyPsalmPlugin\Tests\Fixture;
|
|
|
|
class DummyPrivateService
|
|
{
|
|
public function foo(): string
|
|
{
|
|
return 'foo';
|
|
}
|
|
}
|