Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
OpenApiOperationAddedEvent | |
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 | namespace Apie\RestApi\Events; |
3 | |
4 | use Apie\Common\Interfaces\RestApiRouteDefinition; |
5 | use Apie\SchemaGenerator\Builders\ComponentsBuilder; |
6 | use cebe\openapi\spec\Operation; |
7 | |
8 | final class OpenApiOperationAddedEvent |
9 | { |
10 | public function __construct( |
11 | public readonly ComponentsBuilder $componentsBuilder, |
12 | public readonly Operation $operation, |
13 | public readonly RestApiRouteDefinition $routeDefinition, |
14 | ) { |
15 | } |
16 | } |