Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
CRAP | |
100.00% |
1 / 1 |
HomeAboutLogic | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
3 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
validateImpl | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
executeImpl | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models\Domain\Page\Home; |
6 | |
7 | use PeServer\Core\Mvc\LogicCallMode; |
8 | use PeServer\Core\Mvc\LogicParameter; |
9 | use PeServer\App\Models\Domain\Page\PageLogicBase; |
10 | |
11 | class HomeAboutLogic extends PageLogicBase |
12 | { |
13 | public function __construct(LogicParameter $parameter) |
14 | { |
15 | parent::__construct($parameter); |
16 | } |
17 | |
18 | protected function validateImpl(LogicCallMode $callMode): void |
19 | { |
20 | //NOP |
21 | } |
22 | |
23 | protected function executeImpl(LogicCallMode $callMode): void |
24 | { |
25 | //NOP |
26 | } |
27 | } |