12 lines
193 B
PHP
12 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
|
||
|
|
||
|
final class ScalarFactory
|
||
|
{
|
||
|
public static function getSomeValue(): string
|
||
|
{
|
||
|
return 'some value';
|
||
|
}
|
||
|
}
|