Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
AppRouting | |
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\App\Models\AppErrorHandler; |
8 | use PeServer\App\Models\SessionKey; |
9 | use PeServer\Core\DI\IDiRegisterContainer; |
10 | use PeServer\Core\Environment; |
11 | use PeServer\Core\Http\HttpMethod; |
12 | use PeServer\Core\Http\IResponsePrinterFactory; |
13 | use PeServer\Core\Http\RequestPath; |
14 | use PeServer\Core\Log\ILogger; |
15 | use PeServer\Core\Log\ILoggerFactory; |
16 | use PeServer\Core\Mvc\RouteRequest; |
17 | use PeServer\Core\Mvc\RouteSetting; |
18 | use PeServer\Core\Mvc\Routing; |
19 | use PeServer\Core\Store\StoreOptions; |
20 | use PeServer\Core\Store\Stores; |
21 | |
22 | class AppRouting extends Routing |
23 | { |
24 | /** |
25 | * 生成。 |
26 | * |
27 | * @param RouteSetting $routeSetting |
28 | * @param Stores $stores |
29 | */ |
30 | public function __construct(RouteRequest $routeRequest, RouteSetting $routeSetting, Stores $stores, Environment $environment, IResponsePrinterFactory $responsePrinterFactory, ILoggerFactory $loggerFactory, IDiRegisterContainer $serviceLocator) |
31 | { |
32 | parent::__construct($routeRequest, $routeSetting, $stores, $environment, $responsePrinterFactory, $loggerFactory, $serviceLocator); |
33 | } |
34 | } |