You are here

Subrequest.php in Subrequests 8.2

Same filename and directory in other branches
  1. 3.x src/Subrequest.php

Namespace

Drupal\subrequests

File

src/Subrequest.php
View source
<?php

namespace Drupal\subrequests;


/**
 * Value object containing a Subrequest.
 */
class Subrequest {

  /**
   * The request ID.
   *
   * @var string
   */
  public $requestId;

  /**
   * The parsed JSON.
   *
   * @var array
   */
  public $body;

  /**
   * Array of key values.
   *
   * @var array
   */
  public $headers;

  /**
   * The parent subrequests.
   *
   * @var string[]
   */
  public $waitFor;

  /**
   * Is the subrequest resolved?
   *
   * @var bool
   */
  public $_resolved;

  /**
   * The URI to request.
   *
   * @var string
   */
  public $uri;

  /**
   * The action to perform.
   *
   * @var string
   */
  public $action;
  public function __construct($values) {
    $this->requestId = $values['requestId'];
    $this->body = $values['body'];
    $this->headers = $values['headers'];
    $this->waitFor = $values['waitFor'];
    $this->_resolved = $values['_resolved'];
    $this->uri = $values['uri'];
    $this->action = $values['action'];
  }
  public function __toString() {
    return serialize($this);
  }

}

Classes

Namesort descending Description
Subrequest Value object containing a Subrequest.