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