From 92cb654708e2ba579307b1cd5604ac8f5af495e7 Mon Sep 17 00:00:00 2001 From: Sergey Zhuravel Date: Thu, 6 Aug 2015 17:39:37 +0300 Subject: [PATCH] Service name should be in lowercase http://symfony.com/doc/current/contributing/code/standards.html#service-naming-conventions --- Command/ServerCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/ServerCommand.php b/Command/ServerCommand.php index 047552c..f73d253 100644 --- a/Command/ServerCommand.php +++ b/Command/ServerCommand.php @@ -20,7 +20,7 @@ protected function configure() protected function execute(InputInterface $input, OutputInterface $output) { - $main = $this->getContainer()->get("JDare_clank.entry_point"); + $main = $this->getContainer()->get("jdare_clank.entry_point"); $output->writeln("Starting Clank"); @@ -29,4 +29,4 @@ protected function execute(InputInterface $input, OutputInterface $output) $main->launch(); } -} \ No newline at end of file +}