Skip to content

Commit a1336e0

Browse files
committed
Update part06.rst
If $request is not typed there is an error : Controller "render_template" requires that you provide a value for the "$request" argument (because there is no default value or because there is a non optional argument after this one).
1 parent d802d42 commit a1336e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/part06.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Let's conclude with the new version of our framework::
164164
use Symfony\Component\Routing;
165165
use Symfony\Component\HttpKernel;
166166

167-
function render_template($request)
167+
function render_template(Request $request)
168168
{
169169
extract($request->attributes->all());
170170
ob_start();

0 commit comments

Comments
 (0)