Skip to content
Permalink
8.x
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
<?php
namespace Illuminate\Contracts\Support;
interface Responsable
{
/**
* Create an HTTP response that represents the object.
*
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function toResponse($request);
}