Skip to content

Commit e2988ba

Browse files
committed
improve sentence
1 parent 70f2ecb commit e2988ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

working-with-controllers/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ description: Tutorial on how to work with controllers in Fano Framework
1010
</a>
1111
Request response cycle diagram.
1212

13-
When web application receives [request](/working-with-request), [dispatcher](/dispatcher) uses uri and HTTP method to [match route](/working-with-router) for the request. If route is found, associated controller will be called, otherwise it raises `ERouteHandlerNotFound` exception.
13+
When web application receives [request](/working-with-request), [dispatcher](/dispatcher) uses uri and HTTP method to [match route](/working-with-router) for the request. If route is found, associated controller will be called, otherwise it raises `ERouteHandlerNotFound` exception. Controller than fetch required data from model. Model may retrieve data from storage such as database system. View builds response output to controller which pass response back to web server and eventually back to client browser.
1414

15-
In Fano Framework, controller is any class implements `IRequestHandler` interface.
15+
In Fano Framework, controller is any class implements `IRequestHandler` interface. This is where application business logic resides.
1616

1717
## IRequestHandler interface
1818

0 commit comments

Comments
 (0)