Файловый менеджер - Редактировать - /var/www/html/libraries/vendor/web-auth/webauthn-lib/src/PublicKeyCredentialEntity.php
Ðазад
<?php declare(strict_types=1); namespace Webauthn; use JsonSerializable; abstract class PublicKeyCredentialEntity implements JsonSerializable { public function __construct( protected string $name, protected ?string $icon ) { } public function getName(): string { return $this->name; } public function getIcon(): ?string { return $this->icon; } /** * @return mixed[] */ public function jsonSerialize(): array { $json = [ 'name' => $this->name, ]; if ($this->icon !== null) { $json['icon'] = $this->icon; } return $json; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка