1 | <?php |
||
8 | class ContentTypeController extends FrontControllerA { |
||
9 | |||
10 | /** |
||
11 | * The current request content type |
||
12 | * @var string |
||
13 | */ |
||
14 | private $sContentType; |
||
15 | |||
16 | public static function isValidContentType($sContentType) {} |
||
17 | |||
18 | public function getAvailableContentTypes() {} |
||
19 | |||
20 | public function getController() {} |
||
21 | |||
22 | public function getContentType() { |
||
25 | |||
26 | /** |
||
27 | * @returns ViewA |
||
28 | */ |
||
29 | 1 | public function getDefaultView() { |
|
31 | |||
32 | /** |
||
33 | * @param HttpRequestA $oRequest |
||
34 | * @param null $oProcessor |
||
35 | * @return \vsc\presentation\responses\HttpResponseA |
||
36 | */ |
||
37 | 1 | public function getResponse(HttpRequestA $oRequest, $oProcessor = null) { |
|
41 | |||
42 | /** |
||
43 | * @param \Exception $e |
||
44 | * @param HttpRequestA $oRequest |
||
45 | * @return \vsc\presentation\responses\HttpResponseA |
||
46 | */ |
||
47 | public function getErrorResponse(\Exception $e, $oRequest = null) { |
||
49 | |||
50 | /** |
||
51 | * @returns ViewA |
||
52 | * @throws ExceptionView |
||
53 | */ |
||
54 | 1 | public function getView() { |
|
58 | } |
||
59 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.