Arrayable.php
3 weeks ago
CanBeEscapedWhenCastToString.php
2 years ago
DeferrableProvider.php
2 years ago
DeferringDisplayableValue.php
2 years ago
Htmlable.php
2 years ago
Jsonable.php
2 years ago
MessageBag.php
2 years ago
MessageProvider.php
2 years ago
Renderable.php
2 years ago
Responsable.php
2 years ago
ValidatedData.php
2 years ago
Responsable.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Support; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface Responsable |
| 7 | { |
| 8 | /** |
| 9 | * Create an HTTP response that represents the object. |
| 10 | * |
| 11 | * @param \Illuminate\Http\Request $request |
| 12 | * @return \Symfony\Component\HttpFoundation\Response |
| 13 | */ |
| 14 | public function toResponse($request); |
| 15 | } |
| 16 |