More updates to stop using dev or alpha or beta versions.
[yaffs-website] / web / core / modules / rest / src / ResourceResponseInterface.php
1 <?php
2
3 namespace Drupal\rest;
4
5 /**
6  * Defines a common interface for resource responses.
7  */
8 interface ResourceResponseInterface {
9
10   /**
11    * Returns response data that should be serialized.
12    *
13    * @return mixed
14    *   Response data that should be serialized.
15    */
16   public function getResponseData();
17
18 }