From 69b538b632289782848ddc4cc96b958fd6f4b074 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 22 Sep 2010 18:18:56 +0200 Subject: [PATCH] [FrameworkBundle] removed the app:init command --- .../Command/InitApplicationCommand.php | 83 ------------------- .../Console/BootstrapApplication.php | 37 --------- .../skeleton/application/generic/Cache.php | 13 --- .../skeleton/application/generic/Kernel.php | 52 ------------ .../application/generic/cache/.symfony | 0 .../skeleton/application/generic/console | 11 --- .../application/generic/logs/.symfony | 0 .../application/generic/phpunit.xml.dist | 29 ------- .../application/php/config/config.php | 48 ----------- .../application/php/config/config_dev.php | 20 ----- .../application/php/config/config_prod.php | 3 - .../application/php/config/config_test.php | 17 ---- .../application/php/config/routing.php | 11 --- .../application/php/config/routing_dev.php | 10 --- .../application/xml/config/config.xml | 49 ----------- .../application/xml/config/config_dev.xml | 29 ------- .../application/xml/config/config_prod.xml | 10 --- .../application/xml/config/config_test.xml | 26 ------ .../application/xml/config/routing.xml | 10 --- .../application/xml/config/routing_dev.xml | 10 --- .../application/yml/config/config.yml | 35 -------- .../application/yml/config/config_dev.yml | 15 ---- .../application/yml/config/config_prod.yml | 2 - .../application/yml/config/config_test.yml | 14 ---- .../application/yml/config/routing.yml | 3 - .../application/yml/config/routing_dev.yml | 6 -- .../skeleton/web/front_controller.php | 6 -- .../skeleton/web/front_controller_debug.php | 12 --- 28 files changed, 561 deletions(-) delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Command/InitApplicationCommand.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/Cache.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/Kernel.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/cache/.symfony delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/console delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/logs/.symfony delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/phpunit.xml.dist delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_dev.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_prod.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_test.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing_dev.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_dev.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_prod.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_test.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing_dev.xml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_dev.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_prod.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_test.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing_dev.yml delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller.php delete mode 100644 src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller_debug.php diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/InitApplicationCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/InitApplicationCommand.php deleted file mode 100644 index f8faaa9653..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Command/InitApplicationCommand.php +++ /dev/null @@ -1,83 +0,0 @@ - - * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. - */ - -/** - * Initializes a new application. - * - * @author Fabien Potencier - */ -class InitApplicationCommand extends BaseCommand -{ - /** - * @see Command - */ - protected function configure() - { - $this - ->setDefinition(array( - new InputArgument('name', InputArgument::REQUIRED, 'The application name (Hello)'), - new InputArgument('path', InputArgument::REQUIRED, 'The path to the application (hello/)'), - new InputArgument('web_path', InputArgument::REQUIRED, 'The path to the public web root (web/)'), - new InputOption('format', '', InputOption::PARAMETER_REQUIRED, 'Use the format for configuration files (php, xml, or yaml)', 'xml'), - )) - ->setName('init:application') - ; - } - - /** - * @see Command - */ - protected function execute(InputInterface $input, OutputInterface $output) - { - if (file_exists($targetDir = $input->getArgument('path'))) { - throw new \RuntimeException(sprintf('The directory "%s" already exists.', $targetDir)); - } - - if (!file_exists($webDir = $input->getArgument('web_path'))) { - mkdir($webDir, 0777, true); - } - - $parameters = array( - 'class' => $input->getArgument('name'), - 'application' => strtolower($input->getArgument('name')), - 'format' => $input->getOption('format'), - ); - - $filesystem = new Filesystem(); - - $filesystem->mirror(__DIR__.'/../Resources/skeleton/application/generic', $targetDir); - $filesystem->mirror(__DIR__.'/../Resources/skeleton/application/'.$input->getOption('format'), $targetDir); - Mustache::renderDir($targetDir, $parameters); - $filesystem->chmod($targetDir.'/console', 0777); - $filesystem->chmod($targetDir.'/logs', 0777); - $filesystem->chmod($targetDir.'/cache', 0777); - - $filesystem->rename($targetDir.'/Kernel.php', $targetDir.'/'.$input->getArgument('name').'Kernel.php'); - $filesystem->rename($targetDir.'/Cache.php', $targetDir.'/'.$input->getArgument('name').'Cache.php'); - - $filesystem->copy(__DIR__.'/../Resources/skeleton/web/front_controller.php', $file = $webDir.'/'.(file_exists($webDir.'/index.php') ? strtolower($input->getArgument('name')) : 'index').'.php'); - Mustache::renderFile($file, $parameters); - - $filesystem->copy(__DIR__.'/../Resources/skeleton/web/front_controller_debug.php', $file = $webDir.'/'.strtolower($input->getArgument('name')).'_dev.php'); - Mustache::renderFile($file, $parameters); - } -} diff --git a/src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php b/src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php deleted file mode 100644 index 71ece8dc54..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php +++ /dev/null @@ -1,37 +0,0 @@ - - * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. - */ - -/** - * BootstrapApplication. - * - * @author Fabien Potencier - */ -class BootstrapApplication extends BaseApplication -{ - /** - * Constructor. - */ - public function __construct() - { - parent::__construct('Symfony', Kernel::VERSION); - - $this->addCommand(new InitApplicationCommand()); - } -} diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/Cache.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/Cache.php deleted file mode 100644 index 554a356e9a..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/Cache.php +++ /dev/null @@ -1,13 +0,0 @@ -isDebug()) { - $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); - } - - return $bundles; - } - - public function registerBundleDirs() - { - return array( - 'Application' => __DIR__.'/../src/Application', - 'Bundle' => __DIR__.'/../src/Bundle', - 'Symfony\\Bundle' => __DIR__.'/../src/vendor/Symfony/src/Symfony/Bundle', - ); - } - - public function registerContainerConfiguration(LoaderInterface $loader) - { - $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.{{ format }}'); - } -} diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/cache/.symfony b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/cache/.symfony deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/console b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/console deleted file mode 100644 index faf6f6c61f..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/console +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env php -run(); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/logs/.symfony b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/logs/.symfony deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/phpunit.xml.dist b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/phpunit.xml.dist deleted file mode 100644 index 994a66fabf..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/generic/phpunit.xml.dist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - ../src/Application/*/Tests - - - - - - ../src/Application - - ../src/Application/*/Resources - ../src/Application/*/Tests - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config.php deleted file mode 100644 index 934d400a12..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config.php +++ /dev/null @@ -1,48 +0,0 @@ -loadFromExtension('app', 'config', array( - 'charset' => 'UTF-8', - 'error_handler' => null, - 'csrf-secret' => 'xxxxxxxxxx', - 'router' => array('resource' => '%kernel.root_dir%/config/routing.php'), - 'validation' => array('enabled' => true, 'annotations' => true), - 'templating' => array( - 'escaping' => 'htmlspecialchars' - #'assets_version' => "SomeVersionScheme", - ), - #'user' => array( - # 'default_locale' => "fr", - # 'session' => array( - # 'name' => "SYMFONY", - # 'type' => "Native", - # 'lifetime' => "3600", - # ) - #), -)); - -// Twig Configuration -/* -$container->loadFromExtension('twig', 'config', array('auto_reload' => true)); -*/ - -// Doctrine Configuration -/* -$container->loadFromExtension('doctrine', 'dbal', array( - 'dbname' => 'xxxxxxxx', - 'user' => 'xxxxxxxx', - 'password' => '', -)); -$container->loadFromExtension('doctrine', 'orm'); -*/ - -// Swiftmailer Configuration -/* -$container->loadFromExtension('swiftmailer', 'config', array( - 'transport' => "smtp", - 'encryption' => "ssl", - 'auth_mode' => "login", - 'host' => "smtp.gmail.com", - 'username' => "xxxxxxxx", - 'password' => "xxxxxxxx", -)); -*/ diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_dev.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_dev.php deleted file mode 100644 index 81b10922ee..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_dev.php +++ /dev/null @@ -1,20 +0,0 @@ -import('config.php'); - -$container->loadFromExtension('app', 'config', array( - 'router' => array('resource' => '%kernel.root_dir%/config/routing_dev.php'), - 'profiler' => array('only-exceptions' => false), -)); - -$container->loadFromExtension('webprofiler', 'config', array( - 'toolbar' => true, - 'intercept-redirects' => true, -)); - -$container->loadFromExtension('zend', 'config', array( - 'logger' => array( - 'priority' => 'info', - 'path' => '%kernel.logs_dir%/%kernel.environment%.log', - ), -)); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_prod.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_prod.php deleted file mode 100644 index 5a828631a2..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_prod.php +++ /dev/null @@ -1,3 +0,0 @@ -import('config.php'); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_test.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_test.php deleted file mode 100644 index aa671ab6d1..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/config_test.php +++ /dev/null @@ -1,17 +0,0 @@ -import('config_dev.php'); - -$container->loadFromExtension('app', 'config', array( - 'error_handler' => false, - 'test' => true, -)); - -$container->loadFromExtension('webprofiler', 'config', array( - 'toolbar' => false, - 'intercept-redirects' => false, -)); - -$container->loadFromExtension('zend', 'config', array( - 'logger' => array('priority' => 'debug'), -)); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing.php deleted file mode 100644 index f0e4dba995..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing.php +++ /dev/null @@ -1,11 +0,0 @@ -addRoute('homepage', new Route('/', array( - '_controller' => 'FrameworkBundle:Default:index', -))); - -return $collection; diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing_dev.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing_dev.php deleted file mode 100644 index 7a6b024fd6..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/php/config/routing_dev.php +++ /dev/null @@ -1,10 +0,0 @@ -addCollection($loader->import(__DIR__.'/routing.php')); - -$collection->addCollection($loader->import("WebProfilerBundle/Resources/config/routing/profiler.xml"), '/_profiler'); - -return $collection; diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config.xml deleted file mode 100644 index 02f21671bc..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_dev.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_dev.xml deleted file mode 100644 index edc8b590b5..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_dev.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_prod.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_prod.xml deleted file mode 100644 index d987d1b4cf..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_prod.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_test.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_test.xml deleted file mode 100644 index 7087e62dd8..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/config_test.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing.xml deleted file mode 100644 index 614a3f36c6..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - FrameworkBundle:Default:index - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing_dev.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing_dev.xml deleted file mode 100644 index 721dd6a0ce..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/config/routing_dev.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config.yml deleted file mode 100644 index 01efda86f4..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config.yml +++ /dev/null @@ -1,35 +0,0 @@ -app.config: - charset: UTF-8 - error_handler: null - csrf_secret: xxxxxxxxxx - router: { resource: "%kernel.root_dir%/config/routing.yml" } - validation: { enabled: true, annotations: true } - templating: - escaping: htmlspecialchars - #assets_version: SomeVersionScheme - #user: - # default_locale: fr - # session: - # name: SYMFONY - # type: Native - # lifetime: 3600 - -## Twig Configuration -#twig.config: -# auto_reload: true - -## Doctrine Configuration -#doctrine.dbal: -# dbname: xxxxxxxx -# user: xxxxxxxx -# password: ~ -#doctrine.orm: ~ - -## Swiftmailer Configuration -#swiftmailer.config: -# transport: smtp -# encryption: ssl -# auth_mode: login -# host: smtp.gmail.com -# username: xxxxxxxx -# password: xxxxxxxx diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_dev.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_dev.yml deleted file mode 100644 index 4501715b9c..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_dev.yml +++ /dev/null @@ -1,15 +0,0 @@ -imports: - - { resource: config.yml } - -app.config: - router: { resource: "%kernel.root_dir%/config/routing_dev.yml" } - profiler: { only_exceptions: false } - -webprofiler.config: - toolbar: true - intercept_redirects: true - -zend.config: - logger: - priority: debug - path: %kernel.root_dir%/logs/%kernel.environment%.log diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_prod.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_prod.yml deleted file mode 100644 index 8e0b6ff02b..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_prod.yml +++ /dev/null @@ -1,2 +0,0 @@ -imports: - - { resource: config.yml } diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_test.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_test.yml deleted file mode 100644 index b9e881570b..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config_test.yml +++ /dev/null @@ -1,14 +0,0 @@ -imports: - - { resource: config_dev.yml } - -app.config: - error_handler: false - test: ~ - -webprofiler.config: - toolbar: false - intercept_redirects: false - -zend.config: - logger: - priority: debug diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing.yml deleted file mode 100644 index 01b8716b46..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing.yml +++ /dev/null @@ -1,3 +0,0 @@ -homepage: - pattern: / - defaults: { _controller: FrameworkBundle:Default:index } diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing_dev.yml b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing_dev.yml deleted file mode 100644 index d66afa47ad..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/routing_dev.yml +++ /dev/null @@ -1,6 +0,0 @@ -_main: - resource: routing.yml - -_profiler: - resource: WebProfilerBundle/Resources/config/routing/profiler.xml - prefix: /_profiler diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller.php deleted file mode 100644 index 005c441be6..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller.php +++ /dev/null @@ -1,6 +0,0 @@ -handle()->send(); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller_debug.php b/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller_debug.php deleted file mode 100644 index 6fb3ee5ae0..0000000000 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/web/front_controller_debug.php +++ /dev/null @@ -1,12 +0,0 @@ -handle()->send();