haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
API
/
Filename :
Response.php
back
Copy
<?php namespace ACP\API; use LogicException; use WP_Error; class Response { private ?object $body = null; private ?WP_Error $error = null; public function get_body(): ?object { return $this->body; } public function get_error(): WP_Error { if ( ! $this->error instanceof WP_Error) { throw new LogicException('Use has_error().'); } return $this->error; } public function has_error(): bool { return $this->error instanceof WP_Error; } public function with_body(object $body): self { $self = clone $this; $self->body = $body; return $self; } public function with_error(WP_Error $error): self { $self = clone $this; $self->error = $error; return $self; } public function has($key): bool { return isset($this->body->{$key}); } /** * Access properties from the body */ public function get($key) { return $this->body->{$key} ?? null; } }