@@ -6,7 +6,7 @@ components that solve common web development problems.
66
77Instead of using these low-level components, you can use the ready-to-be-used
88Symfony2 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.
1010
1111.. note ::
1212
@@ -48,16 +48,16 @@ Symfony2 Components.
4848
4949.. tip ::
5050
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
5252 started fast, you can also have a look at `Silex `_, a micro-framework
5353 based on the Symfony2 Components. The code is rather slim and it leverages
5454 many aspects of the Symfony2 Components.
5555
5656Many modern web frameworks call themselves MVC frameworks. We won't talk about
5757MVC here as the Symfony2 Components are able to create any type of frameworks,
5858not 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
6161taste and I will let you use any existing third-party libraries (Doctrine,
6262Propel, or plain-old PDO for the Model; PHP or Twig for the View).
6363
@@ -147,8 +147,8 @@ start with the simplest web application we can think of in PHP::
147147
148148 printf('Hello %s', $input);
149149
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.
152152
153153.. _`Symfony2` : http://symfony.com/
154154.. _`documentation` : http://symfony.com/doc
0 commit comments