Files
kupshop/bundles/KupShop/KupShopBundle/Util/System/FileLocator.php
2025-08-02 16:30:27 +02:00

21 lines
411 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\KupShopBundle\Util\System;
use Symfony\Component\HttpKernel\KernelInterface;
class FileLocator extends \Symfony\Component\HttpKernel\Config\FileLocator
{
public function __construct(KernelInterface $kernel)
{
parent::__construct($kernel);
}
public function setPaths($paths): void
{
$this->paths = (array) $paths;
}
}