trait ResourceResponseTrait

Same name and namespace in other branches
  1. 9 core/modules/rest/src/ResourceResponseTrait.php \Drupal\rest\ResourceResponseTrait
  2. 8.9.x core/modules/rest/src/ResourceResponseTrait.php \Drupal\rest\ResourceResponseTrait
  3. 10 core/modules/rest/src/ResourceResponseTrait.php \Drupal\rest\ResourceResponseTrait

Hierarchy

File

core/modules/rest/src/ResourceResponseTrait.php, line 5

Namespace

Drupal\rest
View source
trait ResourceResponseTrait {
    
    /**
     * Response data that should be serialized.
     *
     * @var mixed
     */
    protected $responseData;
    
    /**
     * Returns response data that should be serialized.
     *
     * @return mixed
     *   Response data that should be serialized.
     */
    public function getResponseData() {
        return $this->responseData;
    }

}

Members

Title Sort descending Modifiers Object type Summary
ResourceResponseTrait::$responseData protected property Response data that should be serialized.
ResourceResponseTrait::getResponseData public function Returns response data that should be serialized.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.