Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
routing
/
Tests
/
Loader
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/routing/Tests/Loader/FileLocatorStub.php
<?php namespace Symfony\Component\Routing\Tests\Loader; use Symfony\Component\Config\FileLocatorInterface; class FileLocatorStub implements FileLocatorInterface { public function locate($name, $currentPath = null, $first = true) { if (0 === strpos($name, 'http')) { return $name; } return rtrim($currentPath, '/').'/'.$name; } }