Skip to content

Commit 242aed1

Browse files
committed
removed the usage of "dream up"
1 parent 1242f28 commit 242aed1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

controller.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Controller
77
A controller is a PHP function you create that reads information from the
88
``Request`` object and creates and returns a ``Response`` object. The response could
99
be an HTML page, JSON, XML, a file download, a redirect, a 404 error or anything
10-
else you can dream up. The controller executes whatever arbitrary logic
11-
*your application* needs to render the content of a page.
10+
else. The controller executes whatever arbitrary logic *your application* needs
11+
to render the content of a page.
1212

1313
.. tip::
1414

security/guard_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Guard authentication can be used to:
1414
* Create an API token authentication system (done on this page!)
1515
* `Social Authentication`_ (or use `HWIOAuthBundle`_ for a robust, but non-Guard solution)
1616

17-
or anything else you dream up. In this example, we'll build an API token authentication
17+
or anything else. In this example, we'll build an API token authentication
1818
system so we can learn more about Guard in detail.
1919

2020
Step 1) Prepare your User Class

0 commit comments

Comments
 (0)