mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
14 lines
306 B
PHP
14 lines
306 B
PHP
<?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);
|
|
}
|