| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class OpenApi |
||
| 17 | { |
||
| 18 | public const VERSION = '3.0.2'; |
||
| 19 | |||
| 20 | private $info; |
||
| 21 | private $servers; |
||
| 22 | private $paths; |
||
| 23 | private $components; |
||
| 24 | private $security; |
||
| 25 | private $tags; |
||
| 26 | private $externalDocs; |
||
| 27 | |||
| 28 | public function __construct(Info $info, array $servers = [], Paths $paths, Components $components = null, array $security = [], array $tags = [], $externalDocs = null) |
||
| 40 |