Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
AppTemplateOptions | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models; |
6 | |
7 | use PeServer\Core\Mvc\Template\TemplateOptions; |
8 | use PeServer\Core\ProgramContext; |
9 | use PeServer\Core\Web\IUrlHelper; |
10 | use PeServer\Core\Web\WebSecurity; |
11 | |
12 | class AppTemplateOptions extends TemplateOptions |
13 | { |
14 | public function __construct( |
15 | public string $controllerName, |
16 | public ProgramContext $programContext, |
17 | public IUrlHelper $urlHelper, |
18 | public WebSecurity $webSecurity, |
19 | ) { |
20 | } |
21 | } |