Skip to content

Instantly share code, notes, and snippets.

@mssoylu
Created February 6, 2021 19:38
Show Gist options
  • Save mssoylu/9dfe04cf61ff386e25b9a22ba7fc56d0 to your computer and use it in GitHub Desktop.
Save mssoylu/9dfe04cf61ff386e25b9a22ba7fc56d0 to your computer and use it in GitHub Desktop.
<?php
// src/Acme/HelloBundle/DependencyInjection/AcmeHelloExtension.php
namespace Acme\HelloBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
class AcmeHelloExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
// ... you'll load the files here later
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment