You are here

class Response in N1ED - Visual editor as CKEditor plugin with Bootstrap support 7

Hierarchy

  • class \EdSDK\FlmngrServer\resp\Response

Expanded class hierarchy of Response

1 file declares its use of Response
FlmngrServer.php in vendor/edsdk/flmngr-server-php/src/FlmngrServer.php

File

vendor/edsdk/flmngr-server-php/src/resp/Response.php, line 12

Namespace

EdSDK\FlmngrServer\resp
View source
class Response {
  public $error;
  public $data;
  function __construct($message, $data) {
    $this->error = $message;
    $this->data = $data;
  }

}

Members