| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | class WebAppInfoType |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * An HTTPS URL of a Web App to be opened with additional data as specified in Initializing Web Apps |
||
| 18 | * |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | public $url; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $url |
||
| 25 | * |
||
| 26 | * @throws BadArgumentException |
||
| 27 | * |
||
| 28 | * @return WebAppInfoType |
||
| 29 | */ |
||
| 30 | public static function create(string $url): WebAppInfoType |
||
| 38 |