@@ -37,8 +37,8 @@ lives::
37
37
38
38
The controller first bootstraps the application using a kernel class (``AppKernel ``
39
39
in this case). Then, it creates the ``Request `` object using the PHP's global
40
- variables and passes it to the kernel. The last step is to sendback to theuser
41
- the response contents returned by the kernel.
40
+ variables and passes it to the kernel. The last step is to send theresponse
41
+ contents returned by the kernel back to the user .
42
42
43
43
.. _the-app-dir :
44
44
@@ -57,7 +57,7 @@ This class must implement two methods:
57
57
(more on this later).
58
58
59
59
Autoloading is handled automatically via `Composer `_, which means that you
60
- can use any PHPclasses without doing anything at all! All dependencies
60
+ can use any PHPclass without doing anything at all! All dependencies
61
61
are stored under the ``vendor/ `` directory, but this is just a convention.
62
62
You can store them wherever you want, globally on your server or locally
63
63
in your projects.