49 lines
1,023 B
YAML
49 lines
1,023 B
YAML
|
name: Kernel
|
||
|
class_comment: null
|
||
|
dependencies: []
|
||
|
properties: []
|
||
|
methods:
|
||
|
- name: bootstrap
|
||
|
visibility: public
|
||
|
parameters: []
|
||
|
comment: '# * Bootstrap the application for HTTP requests.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @return void'
|
||
|
- name: handle
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: request
|
||
|
comment: '# * Handle an incoming HTTP request.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @param \Symfony\Component\HttpFoundation\Request $request
|
||
|
|
||
|
# * @return \Symfony\Component\HttpFoundation\Response'
|
||
|
- name: terminate
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: request
|
||
|
- name: response
|
||
|
comment: '# * Perform any final actions for the request lifecycle.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @param \Symfony\Component\HttpFoundation\Request $request
|
||
|
|
||
|
# * @param \Symfony\Component\HttpFoundation\Response $response
|
||
|
|
||
|
# * @return void'
|
||
|
- name: getApplication
|
||
|
visibility: public
|
||
|
parameters: []
|
||
|
comment: '# * Get the Laravel application instance.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @return \Illuminate\Contracts\Foundation\Application'
|
||
|
traits: []
|
||
|
interfaces: []
|