Skip to content

Commit

Permalink
Changed the style of the use statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
elnur committed Aug 16, 2012
1 parent 75371f9 commit 4620716
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
*/
namespace Elnur\AbstractControllerBundle;

use Symfony\Component\Form\FormFactory,
Symfony\Bundle\FrameworkBundle\Routing\Router,
Symfony\Component\Translation\TranslatorInterface,
Symfony\Component\Security\Core\SecurityContextInterface,
Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
use Symfony\Component\Form\FormFactory;
use Symfony\Component\Translation\TranslatorInterface;
use Symfony\Component\Security\Core\SecurityContextInterface;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;

abstract class AbstractController
{
Expand Down
8 changes: 4 additions & 4 deletions DependencyInjection/ElnurAbstractControllerExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
*/
namespace Elnur\AbstractControllerBundle\DependencyInjection;

use Symfony\Component\HttpKernel\DependencyInjection\Extension,
Symfony\Component\DependencyInjection\ContainerBuilder,
Symfony\Component\DependencyInjection\Loader\XmlFileLoader,
Symfony\Component\Config\FileLocator;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\Config\FileLocator;

class ElnurAbstractControllerExtension extends Extension
{
Expand Down

0 comments on commit 4620716

Please sign in to comment.