@@ -6,7 +6,7 @@ components that solve common web development problems.
6
6
7
7
Instead of using these low-level components, you can use the ready-to-be-used
8
8
Symfony2 full-stack web framework, which is based on these components... or
9
- you can create your very own framework. This series is about the latter.
9
+ you can create your very own framework. This book is about the latter.
10
10
11
11
.. note ::
12
12
@@ -48,16 +48,16 @@ Symfony2 Components.
48
48
49
49
.. tip ::
50
50
51
- If you don't have time to read the whole series , or if you want to get
51
+ If you don't have time to read the whole book , or if you want to get
52
52
started fast, you can also have a look at `Silex `_, a micro-framework
53
53
based on the Symfony2 Components. The code is rather slim and it leverages
54
54
many aspects of the Symfony2 Components.
55
55
56
56
Many modern web frameworks call themselves MVC frameworks. We won't talk about
57
57
MVC here as the Symfony2 Components are able to create any type of frameworks,
58
58
not just the ones that follow the MVC architecture. Anyway, if you have a look
59
- at the MVC semantics, this series is about how to create the Controller part
60
- of a framework. For the Model and the View, it really depends on your personal
59
+ at the MVC semantics, this book is about how to create the Controller part of
60
+ a framework. For the Model and the View, it really depends on your personal
61
61
taste and I will let you use any existing third-party libraries (Doctrine,
62
62
Propel, or plain-old PDO for the Model; PHP or Twig for the View).
63
63
@@ -147,8 +147,8 @@ start with the simplest web application we can think of in PHP::
147
147
148
148
printf('Hello %s', $input);
149
149
150
- That's all for the first part of this series. Next time , we will introduce the
151
- HttpFoundation Component and see what it brings us.
150
+ In the next chapter , we are going to introduce the HttpFoundation Component
151
+ and see what it brings us.
152
152
153
153
.. _`Symfony2` : http://symfony.com/
154
154
.. _`documentation` : http://symfony.com/doc
0 commit comments