mirror of
https://github.com/symfony/ux.symfony.com.git
synced 2026-03-24 00:02:09 +01:00
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/*
|
|
* This file is used by PHPStan, see https://github.com/phpstan/phpstan-symfony#console-command-analysis.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__.'/../../vendor/autoload.php';
|
|
|
|
$env = getenv('APP_ENV') ?: 'test';
|
|
|
|
$xmlContainerFile = __DIR__.sprintf('/../../var/cache/%s/App_Kernel%sDebugContainer.xml', $env, ucfirst($env));
|
|
|
|
if (!file_exists($xmlContainerFile)) {
|
|
throw new RuntimeException(sprintf(<<<ERROR
|
|
PHPStan depends on the meta information the Symfony Dependency Injection that the compiler pass writes.
|
|
The meta xml file could not be found: %s.
|
|
|
|
To compile the Symfony container do a cache:clear in the current env (%s) with debug: true!
|
|
ERROR, $xmlContainerFile, $env));
|
|
}
|
|
|
|
return [
|
|
'parameters' => [
|
|
'symfony' => [
|
|
'containerXmlPath' => $xmlContainerFile,
|
|
],
|
|
],
|
|
];
|