Файловый менеджер - Редактировать - /var/www/html/libraries/vendor/web-auth/metadata-service/src/Statement/AlternativeDescriptions.php
Ðазад
<?php declare(strict_types=1); namespace Webauthn\MetadataService\Statement; use JsonSerializable; /** * @final */ class AlternativeDescriptions implements JsonSerializable { /** * @var array<string, string> */ private array $descriptions = []; /** * @param array<string, string> $descriptions */ public static function create(array $descriptions = []): self { $object = new self(); foreach ($descriptions as $k => $v) { $object->add($k, $v); } return $object; } /** * @return array<string, string> */ public function all(): array { return $this->descriptions; } public function add(string $locale, string $description): self { $this->descriptions[$locale] = $description; return $this; } /** * @return array<string, string> */ public function jsonSerialize(): array { return $this->descriptions; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка