12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Dingo\Blueprint\Annotation;
- /**
- * @Annotation
- */
- class Response
- {
- /**
- * @var int
- */
- public $statusCode;
- /**
- * @var string
- */
- public $contentType = 'application/json';
- /**
- * @var mixed
- */
- public $body;
- /**
- * @var array
- */
- public $headers = [];
- /**
- * @var array<Dingo\Blueprint\Annotation\Attribute>
- */
- public $attributes;
- }
|