Skip to content

Commit ce582ec

Browse files
committed
minor #3735 [book] [controller] fixed the code of a session sample code (javiereguiluz)
This PR was merged into the 2.3 branch. Discussion ---------- [book] [controller] fixed the code of a session sample code | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3+ | Fixed tickets | - This code was updated in the past to use the $request controller injection and the resulting code was a bit confusing. When you get the attribute set by another controller, it's better to use a different attribute name, to make it clear that it wasn't set at this controller. Commits ------- 9da7f9b [book] [controller] fixed the code of a session sample code
2 parents d92545e + 9da7f9b commit ce582ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: book/controller.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -666,10 +666,10 @@ from any controller::
666666
// store an attribute for reuse during a later user request
667667
$session->set('foo', 'bar');
668668

669-
// in another controller for another request
670-
$foo = $session->get('foo');
669+
// get the attribute set by another controller in another request
670+
$foobar = $session->get('foobar');
671671

672-
// use a default value if the key doesn't exist
672+
// use a default value if the attribute doesn't exist
673673
$filters = $session->get('filters', array());
674674
}
675675

0 commit comments

Comments
 (0)