| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class Info |
||
| 17 | { |
||
| 18 | public $title; |
||
| 19 | public $description; |
||
| 20 | public $termsOfService; |
||
| 21 | public $contact; |
||
| 22 | public $license; |
||
| 23 | public $version; |
||
| 24 | |||
| 25 | public function __construct(string $title, string $version, string $description = '', string $termsOfService = null, Contact $contact = null, License $license = null) |
||
| 35 |