Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
ManagementMarkdownLogic | |
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\Management; |
6 | |
7 | use PeServer\Core\IO\IOUtility; |
8 | use PeServer\Core\SizeConverter; |
9 | use PeServer\Core\Mvc\LogicCallMode; |
10 | use PeServer\Core\Mvc\LogicParameter; |
11 | use PeServer\App\Models\AppConfiguration; |
12 | use PeServer\App\Models\Domain\Page\PageLogicBase; |
13 | |
14 | class ManagementMarkdownLogic extends PageLogicBase |
15 | { |
16 | public function __construct(LogicParameter $parameter) |
17 | { |
18 | parent::__construct($parameter); |
19 | } |
20 | |
21 | protected function validateImpl(LogicCallMode $callMode): void |
22 | { |
23 | //NOP |
24 | } |
25 | |
26 | protected function executeImpl(LogicCallMode $callMode): void |
27 | { |
28 | //NOP |
29 | } |
30 | } |