* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * Interface that must be implemented by compilation passes * * @author Johannes M. Schmitt */ interface CompilerPassInterface { /** * You can modify the container here before it is dumped to PHP code. * * @param ContainerBuilder $container * @return void */ function process(ContainerBuilder $container); }