| 1 | <?php |
||
| 8 | class IntrospectionResponse extends AbstractResponseType |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | private $introspectionData; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param array $introspectionData |
||
| 17 | */ |
||
| 18 | 5 | public function setIntrospectionData(array $introspectionData) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | 5 | public function getIntrospectionData() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @param ResponseInterface $response |
||
| 33 | * |
||
| 34 | * @return ResponseInterface |
||
| 35 | */ |
||
| 36 | public function generateHttpResponse(ResponseInterface $response) |
||
| 42 | } |
||
| 43 |