Files
Chamilo/vendor/symfony/dependency-injection/Tests/Fixtures/ScalarFactory.php
2025-08-14 22:41:49 +02:00

15 lines
223 B
PHP

<?php
namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
final class ScalarFactory
{
/**
* @return string
*/
public static function getSomeValue()
{
return 'some value';
}
}