Skip to content
This repository has been archived by the owner on Dec 9, 2017. It is now read-only.

Commit

Permalink
correct CS
Browse files Browse the repository at this point in the history
  • Loading branch information
sstok committed Jun 29, 2015
1 parent 4eda930 commit 4389670
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 0 additions & 2 deletions src/DependencyInjection/Compiler/RequestUriProviderPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@

namespace Rollerworks\Bundle\DatagridBundle\DependencyInjection\Compiler;

use Rollerworks\Component\Datagrid\Twig\Extension\DatagridExtension as TwigDatagridExtension;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __construct(RequestUriProviderByListener $uriProvider)
public static function getSubscribedEvents()
{
return [
KernelEvents::REQUEST => 'onRequest'
KernelEvents::REQUEST => 'onRequest',
];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@

namespace Rollerworks\Bundle\DatagridBundle\Tests\Extension\Symfony\ColumnTypeExtension;

use Rollerworks\Bundle\DatagridBundle\Extension\Symfony\ColumnTypeExtension\ActionTypeExtension;
use Rollerworks\Bundle\DatagridBundle\Extension\Symfony\RequestUriProviderInterface;
use Rollerworks\Component\Datagrid\PreloadedExtension;
use Rollerworks\Component\Datagrid\Test\ColumnTypeTestCase;
use Rollerworks\Bundle\DatagridBundle\Extension\Symfony\ColumnTypeExtension\ActionTypeExtension;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;

class ActionTypeExtensionTest extends ColumnTypeTestCase
Expand Down Expand Up @@ -68,10 +66,10 @@ function () {
[],
[
'action' => [
new ActionTypeExtension($urlGenerator->reveal(), $requestUriProvider->reveal())
]
new ActionTypeExtension($urlGenerator->reveal(), $requestUriProvider->reveal()),
],
]
)
),
];
}

Expand Down

0 comments on commit 4389670

Please sign in to comment.