Skip to content

Commit 706ec15

Browse files
committed
Remove sensio/framework-extra-bundle from the dev dependencies
1 parent b4e5c21 commit 706ec15

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"psr/log": "^1.0",
4949
"ramsey/uuid": "^3.7",
5050
"ramsey/uuid-doctrine": "^1.4",
51-
"sensio/framework-extra-bundle": "^3.0.11 || ^4.0 || ^5.0",
5251
"symfony/asset": "^3.3 || ^4.0",
5352
"symfony/cache": "^3.3 || ^4.0",
5453
"symfony/config": "^3.4 || ^4.0",

tests/Fixtures/TestBundle/Controller/CustomActionController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ class CustomActionController extends Controller
3131
* defaults={"_api_resource_class"=CustomActionDummy::class, "_api_item_operation_name"="custom_normalization"}
3232
* )
3333
*/
34-
public function customNormalizationAction(CustomActionDummy $_data)
34+
public function customNormalizationAction(CustomActionDummy $data)
3535
{
36-
$_data->setFoo('foo');
36+
$data->setFoo('foo');
3737

38-
return $this->json($_data);
38+
return $this->json($data);
3939
}
4040

4141
/**

tests/Fixtures/app/AppKernel.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
1818
use FOS\UserBundle\FOSUserBundle;
1919
use Nelmio\ApiDocBundle\NelmioApiDocBundle;
20-
use Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle;
2120
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
2221
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
2322
use Symfony\Bundle\SecurityBundle\SecurityBundle;
@@ -51,7 +50,6 @@ public function registerBundles(): array
5150
new FrameworkBundle(),
5251
new TwigBundle(),
5352
new DoctrineBundle(),
54-
new SensioFrameworkExtraBundle(),
5553
new ApiPlatformBundle(),
5654
new SecurityBundle(),
5755
new FOSUserBundle(),

tests/Fixtures/app/config/config_test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ doctrine:
2626
twig:
2727
strict_variables: '%kernel.debug%'
2828

29-
sensio_framework_extra:
30-
router:
31-
annotations: false
32-
3329
api_platform:
3430
title: 'My Dummy API'
3531
description: 'This is a test API.'

0 commit comments

Comments
 (0)