Skip to content

Commit 11bc140

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: Fix controller name
2 parents 722e56e + 304c77a commit 11bc140

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

controller/service.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ which is a common practice when following the `ADR pattern`_
187187

188188
.. code-block:: php-attributes
189189
190-
// src/Controller/Hello.php
190+
// src/Controller/HelloController.php
191191
namespace App\Controller;
192192
193193
use Symfony\Component\HttpFoundation\Response;
194194
use Symfony\Component\Routing\Attribute\Route;
195195
196196
#[Route('/hello/{name}', name: 'hello')]
197-
class Hello
197+
class HelloController
198198
{
199199
public function __invoke(string $name = 'World'): Response
200200
{

0 commit comments

Comments
 (0)