Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Controller | n/a |
0 / 0 |
n/a |
0 / 0 |
1 | n/a |
0 / 0 |
|||
| init | n/a |
0 / 0 |
1 | n/a |
0 / 0 |
|||||
| <?php | |
| namespace Win\Controllers; | |
| use Win\Application; | |
| /** | |
| * Controller | |
| * | |
| * Responsável por processar as requisições e retornar a View | |
| */ | |
| abstract class Controller | |
| { | |
| public Application $app; | |
| public ?string $layout = 'layout'; | |
| /** @var string|string[] */ | |
| public $title; | |
| /** | |
| * Ação Inicial, executada antes de qualquer action | |
| * @codeCoverageIgnore | |
| */ | |
| public function init() | |
| { | |
| } | |
| } |