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