From 4a9c42a52d2dbe166293b54f9a74999aebbdb625 Mon Sep 17 00:00:00 2001 From: netkas Date: Wed, 29 Jan 2025 15:24:39 -0500 Subject: [PATCH] Removed ImageCaptcha (Old) --- .../Objects/Standard/ImageCaptcha.php | 52 ------------------- 1 file changed, 52 deletions(-) delete mode 100644 src/Socialbox/Objects/Standard/ImageCaptcha.php diff --git a/src/Socialbox/Objects/Standard/ImageCaptcha.php b/src/Socialbox/Objects/Standard/ImageCaptcha.php deleted file mode 100644 index cbcc158..0000000 --- a/src/Socialbox/Objects/Standard/ImageCaptcha.php +++ /dev/null @@ -1,52 +0,0 @@ -expires = $data['expires']; - $this->image = $data['image']; - } - - /** - * @return int - */ - public function getExpires(): int - { - return $this->expires; - } - - /** - * @return string - */ - public function getImage(): string - { - return $this->image; - } - - /** - * @inheritDoc - */ - public static function fromArray(array $data): object - { - return new self($data); - } - - /** - * @inheritDoc - */ - public function toArray(): array - { - return [ - 'expires' => $this->expires, - 'image' => $this->image - ]; - } -} \ No newline at end of file