tikiwiki/packages/tiki-pkg-tikimanager/symfony/dependency-injection/Tests/Fixtures/ScalarFactory.php
2023-11-20 20:52:04 +00:00

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';
}
}