Refactored Namespace

This commit is contained in:
Netkas 2023-02-14 17:41:38 -05:00
parent 45edd758a1
commit 1ef4e52a46
99 changed files with 136 additions and 136 deletions

View file

@ -1,88 +0,0 @@
<?php
/** @noinspection PhpMissingFieldTypeInspection */
namespace TgBotLib\Objects;
use TgBotLib\Interfaces\ObjectTypeInterface;
class EncryptedCredentials implements ObjectTypeInterface
{
/**
* @var string
*/
private $data;
/**
* @var string
*/
private $hash;
/**
* @var string
*/
private $secret;
/**
* Base64-encoded encrypted JSON-serialized data with unique user's payload, data hashes and secrets required
* for EncryptedPassportElement decryption and authentication
*
* @see https://core.telegram.org/bots/api#encryptedpassportelement
* @return string
*/
public function getData(): string
{
return $this->data;
}
/**
* Base64-encoded data hash for data authentication
*
* @return string
*/
public function getHash(): string
{
return $this->hash;
}
/**
* Base64-encoded secret, encrypted with the bot's public RSA key, required for data decryption
*
* @return string
*/
public function getSecret(): string
{
return $this->secret;
}
/**
* Returns an array representation of the object
*
* @return array
*/
public function toArray(): array
{
return [
'data' => $this->data,
'hash' => $this->hash,
'secret' => $this->secret,
];
}
/**
* Constructs object from an array representation
*
* @param array $data
* @return ObjectTypeInterface
*/
public static function fromArray(array $data): ObjectTypeInterface
{
$object = new self();
$object->data = $data['data'] ?? null;
$object->hash = $data['hash'] ?? null;
$object->secret = $data['secret'] ?? null;
return $object;
}
}