Files
DrupalTutorial/core/modules/rest/src/ResourceResponseTrait.php
2024-07-15 12:33:27 +02:00

25 lines
384 B
PHP
Executable File

<?php
namespace Drupal\rest;
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;
}
}