File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ to creating a page?
81
81
#. *Create a controller *: The method below the route - ``numberAction() `` - is called
82
82
the *controller *: this is a function where *you * build the page and ultimately
83
83
return a ``Response `` object. You'll learn more about :doc: `controllers </controller >`
84
- in their own section, including how to return JSON responses;
84
+ in their own section, including how to return JSON responses.
85
85
86
86
The Web Debug Toolbar: Debugging Dream
87
87
--------------------------------------
@@ -129,7 +129,7 @@ variable so we can render that::
129
129
$number = mt_rand(0, 100);
130
130
131
131
return $this->render('lucky/number.html.twig', array(
132
- 'number' => $number
132
+ 'number' => $number,
133
133
));
134
134
}
135
135
}
You can’t perform that action at this time.
0 commit comments