for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
$bundles = array();
if (in_array($this->getEnvironment(), array('test'))) {
$bundles[] = new Symfony\Bundle\FrameworkBundle\FrameworkBundle();
$bundles[] = new SF2Helpers\SFTPBundle\SF2HelpersSFTPBundle();
}
return $bundles;
public function registerContainerConfiguration(LoaderInterface $loader)
$loader->load(__DIR__.'/config.yml');