Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit e0875f3

Browse files
committed
fixes due to hints on review
1 parent 4300d79 commit e0875f3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

tests/Unit/DependencyInjection/CmfSonataAdminExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ public function testThatBundlesAreConfigured()
3333
{
3434
$this->container->setParameter(
3535
'kernel.bundles',
36-
array(
36+
[
3737
'CmfSeoBundle' => true,
3838
'CmfRoutingBundle' => true,
3939
'SonataDoctrinePHPCRAdminBundle' => true,
4040
'DoctrinePHPCRBundle' => true,
4141
'BurgovKeyValueFormBundle' => true,
42-
)
42+
]
4343
);
4444

4545
$this->load([]);

tests/Unit/DependencyInjection/Factory/ContentAdminFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
1010

1111
/**
12+
* @author Wouter de Jong <[email protected]>
1213
* @author Maximilian Berghoff <[email protected]>
1314
*/
1415
class ContentAdminFactoryTest extends \PHPUnit_Framework_TestCase

tests/Unit/DependencyInjection/Factory/CoreAdminFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testParametersBundle()
1212
$this->container->setParameter('kernel.bundles', [
1313
'CmfCoreBundle' => true,
1414
'SonataDoctrinePHPCRAdminBundle' => true,
15-
'CmfSonataPhpcrAdminIntegrationBundle.' => true,
15+
'CmfSonataPhpcrAdminIntegrationBundle' => true,
1616
]);
1717
$this->load([
1818
'bundles' => [

tests/Unit/DependencyInjection/Factory/MenuAdminFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testParametersBundle()
1212
$this->container->setParameter('kernel.bundles', [
1313
'CmfMenuBundle' => true,
1414
'SonataDoctrinePHPCRAdminBundle' => true,
15-
'CmfSonataPhpcrAdminIntegrationBundle.' => true,
15+
'CmfSonataPhpcrAdminIntegrationBundle' => true,
1616
]);
1717
$this->load([
1818
'bundles' => [

tests/Unit/DependencyInjection/Factory/RoutingAdminFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function testParametersBundle()
1212
$this->container->setParameter('kernel.bundles', [
1313
'CmfRoutingBundle' => true,
1414
'SonataDoctrinePHPCRAdminBundle' => true,
15-
'CmfSonataPhpcrAdminIntegrationBundle.' => true,
15+
'CmfSonataPhpcrAdminIntegrationBundle' => true,
1616
]);
1717
$this->load([
1818
'bundles' => [

0 commit comments

Comments
 (0)