for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace midcom\bundle\dependencyInjection;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use midcom_config;
abstract class configPass implements CompilerPassInterface
{
/**
* @var midcom_config
*/
protected $config;
public function __construct(midcom_config $config)
$this->config = $config;
}