for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the puli/symfony-bridge package.
*
* (c) Bernhard Schussek <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Puli\SymfonyBridge\HttpKernel;
use Puli\SymfonyBridge\Config\ChainableFileLocator;
use Symfony\Component\HttpKernel\Config\FileLocator;
/**
* @since 1.0
* @author Bernhard Schussek <[email protected]>
class ChainableKernelFileLocator extends FileLocator implements ChainableFileLocator
{
public function supports($path)
return isset($path[0]) && '@' === $path[0];
}