Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
AccountApiController | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Controllers\Api; |
6 | |
7 | use PeServer\Core\Mvc\ControllerArgument; |
8 | |
9 | /** |
10 | * [API] アカウント用コントローラ。 |
11 | * |
12 | * なーんも作ってないんだわ。 |
13 | */ |
14 | class AccountApiController extends ApiControllerBase |
15 | { |
16 | public function __construct(ControllerArgument $argument) |
17 | { |
18 | parent::__construct($argument); |
19 | } |
20 | } |