1 | <?php |
||
19 | class ApplicationServicesProvider extends ServiceProvider |
||
20 | { |
||
21 | |||
22 | protected $provides = [ |
||
23 | 'fuel.application.event', |
||
24 | |||
25 | 'fuel.application.request', |
||
26 | 'Fuel\Foundation\Request\Cli', |
||
27 | |||
28 | 'fuel.application.response', |
||
29 | 'Fuel\Foundation\Response\Cli', |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 3 | public function register() |
|
45 | |||
46 | /** |
||
47 | * @return RequestInterface |
||
48 | */ |
||
49 | 3 | protected function constructRequest() : RequestInterface |
|
54 | |||
55 | /** |
||
56 | * @return ResponseInterface |
||
57 | */ |
||
58 | 3 | protected function constructResponse() : ResponseInterface |
|
63 | } |
||
64 |