Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class Controller |
||
10 | { |
||
11 | /** |
||
12 | * @var \BFW\Application $app BFW Application instance |
||
13 | */ |
||
14 | protected $app; |
||
15 | |||
16 | /** |
||
17 | * @var \BFW\Request $request : Request instance to get informations |
||
18 | * on the http request |
||
19 | */ |
||
20 | protected $request; |
||
21 | |||
22 | /** |
||
23 | * Constructor |
||
24 | * Get \BFW\Request instance. |
||
25 | */ |
||
26 | public function __construct() |
||
32 |