a232522a0db70f3fefa8e730030a0fc9dae3e118
[yaffs-website] / vendor / drupal / console / Test / Command / GenerateCommandTest.php
1 <?php
2
3 namespace Drupal\Console\Test\Command;
4
5 use Symfony\Component\DependencyInjection\Container;
6 use Drupal\Console\Test\BaseTestCase;
7
8 abstract class GenerateCommandTest extends BaseTestCase
9 {
10     /**
11      * @return \Symfony\Component\DependencyInjection\ContainerInterface Drupal container
12      */
13     protected function getContainer()
14     {
15         $container = new Container();
16         $container->set('twig', new \Twig_Environment());
17         return $container;
18     }
19 }