File manager - Edit - /home/linknsbh/rassudr.online/vendor/kreait/firebase-php/src/Firebase/DynamicLink/NavigationInfo.php
Back
<?php declare(strict_types=1); namespace Kreait\Firebase\DynamicLink; use JsonSerializable; /** * @phpstan-type NavigationInfoShape array{ * enableForcedRedirect?: bool * } */ final class NavigationInfo implements JsonSerializable { /** * @param NavigationInfoShape $data */ private function __construct(private readonly array $data) { } /** * @param NavigationInfoShape $data */ public static function fromArray(array $data): self { return new self($data); } public static function new(): self { return new self([]); } /** * If set, skip the app preview page when the Dynamic Link is opened, and instead redirect to the app * or store. The app preview page (enabled by default) can more reliably send users to the most appropriate * destination when they open Dynamic Links in apps; however, if you expect a Dynamic Link to be opened * only in apps that can open Dynamic Links reliably without this page, you can disable it with this * parameter. Note: the app preview page is only shown on iOS currently, but may eventually be * shown on Android. This parameter will affect the behavior of the Dynamic Link on both * platforms. */ public function withForcedRedirect(): self { $data = $this->data; $data['enableForcedRedirect'] = true; return new self($data); } /** * @see withForcedRedirect() */ public function withoutForcedRedirect(): self { $data = $this->data; unset($data['enableForcedRedirect']); return new self($data); } public function jsonSerialize(): array { return $this->data; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.51 |
proxy
|
phpinfo
|
Settings