| 1 | <?php |
||
| 19 | class AppController extends Base |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Forbidden page. |
||
| 23 | * |
||
| 24 | * @param bool $withoutLayout |
||
| 25 | * @param string $message |
||
| 26 | */ |
||
| 27 | public function accessForbidden($withoutLayout = false, $message = '') |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Page not found. |
||
| 40 | * |
||
| 41 | * @param bool $withoutLayout |
||
| 42 | */ |
||
| 43 | public function notFound($withoutLayout = false) |
||
| 49 | } |
||
| 50 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.