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