Skip to content

Commit 3f03ebe

Browse files
committed
Merge branch '3.4' into 4.2
* 3.4: Don't use AbstractController in 3.4 branch Added Oskar to the Docs Team
2 parents a805839 + a4a9da3 commit 3f03ebe

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

contributing/code/core_team.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ Active Core Members
114114
* **Wouter De Jong** (`wouterj`_);
115115
* **Jules Pietri** (`HeahDude`_);
116116
* **Javier Eguiluz** (`javiereguiluz`_).
117+
* **Oskar Stark** (`OskarStark`_).
117118

118119
Former Core Members
119120
~~~~~~~~~~~~~~~~~~~
@@ -259,3 +260,4 @@ discretion of the **Project Leader**.
259260
.. _`michaelcullum`: https://github.com/michaelcullum
260261
.. _`wouterj`: https://github.com/wouterj
261262
.. _`HeahDude`: https://github.com/HeahDude
263+
.. _`OskarStark`: https://github.com/OskarStark

routing/conditions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ define arbitrary matching logic, use the ``conditions`` routing option:
1515
// src/Controller/DefaultController.php
1616
namespace App\Controller;
1717
18-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
18+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
1919
use Symfony\Component\Routing\Annotation\Route;
2020
21-
class DefaultController extends AbstractController
21+
class DefaultController extends Controller
2222
{
2323
/**
2424
* @Route(

web_link.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ You can also add links to the HTTP response directly from controllers and servic
153153

154154
use Fig\Link\GenericLinkProvider;
155155
use Fig\Link\Link;
156+
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
156157
use Symfony\Component\HttpFoundation\Request;
157-
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
158158

159-
class BlogController extends AbstractController
159+
class BlogController extends Controller
160160
{
161161
public function index(Request $request)
162162
{

0 commit comments

Comments
 (0)