[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/web-auth/webauthn-lib/src/AuthenticationExtensions/ -> AuthenticationExtension.php (source)

   1  <?php
   2  
   3  declare(strict_types=1);
   4  
   5  /*
   6   * The MIT License (MIT)
   7   *
   8   * Copyright (c) 2014-2019 Spomky-Labs
   9   *
  10   * This software may be modified and distributed under the terms
  11   * of the MIT license.  See the LICENSE file for details.
  12   */
  13  
  14  namespace Webauthn\AuthenticationExtensions;
  15  
  16  use JsonSerializable;
  17  
  18  class AuthenticationExtension implements JsonSerializable
  19  {
  20      /**
  21       * @var string
  22       */
  23      private $name;
  24  
  25      /**
  26       * @var mixed
  27       */
  28      private $value;
  29  
  30      /**
  31       * @param mixed $value
  32       */
  33      public function __construct(string $name, $value)
  34      {
  35          $this->name = $name;
  36          $this->value = $value;
  37      }
  38  
  39      public function name(): string
  40      {
  41          return $this->name;
  42      }
  43  
  44      /**
  45       * @return mixed
  46       */
  47      public function value()
  48      {
  49          return $this->value;
  50      }
  51  
  52      /**
  53       * @return mixed
  54       */
  55      public function jsonSerialize()
  56      {
  57          return $this->value;
  58      }
  59  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer