PHP Classes

File: .ecs/ecs.php

Recommend this page to a friend!
  Classes of Rodolfo Berrios Arce   XR PHP Debugger Online   .ecs/ecs.php   Download  
File: .ecs/ecs.php
Role: Example script
Content type: text/plain
Description: Example script
Class: XR PHP Debugger Online
Debug PHP code using a Web interface
Author: By
Last change:
Date: 2 years ago
Size: 669 bytes
 

Contents

Class file image Download
<?php

/*
 * This file is part of Chevere.
 *
 * (c) Rodolfo Berrios <rodolfo@chevere.org>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

use
Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use
Symplify\EasyCodingStandard\ValueObject\Option;

return static function (
ContainerConfigurator $containerConfigurator): void {
   
$containerConfigurator->import(__DIR__ . '/ecs-chevere.php');
   
$parameters = $containerConfigurator->parameters();
   
$parameters->set(Option::SKIP, [
       
__DIR__ . '/vendor/*',
    ]);
};