mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 10:17:32 +00:00
18 lines
459 B
PHP
18 lines
459 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the box project.
|
|
*
|
|
* (c) Kevin Herrera <kevin@herrera.io>
|
|
* Théo Fidry <theo.fidry@gmail.com>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) {
|
|
require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php';
|
|
}
|