114 lines
3.0 KiB
PHP
114 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Core;
|
|
|
|
use Laravel\Lumen\Http\ResponseFactory as Factory;
|
|
use Illuminate\Contracts\Routing\ResponseFactory as FactoryContract;
|
|
|
|
class ResponseFactory extends Factory implements FactoryContract
|
|
{
|
|
/**
|
|
* Return a new view response from the application.
|
|
*
|
|
* @param string $view
|
|
* @param array $data
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function view($view, $data = [], $status = 200, array $headers = [])
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Return a new JSONP response from the application.
|
|
*
|
|
* @param string $callback
|
|
* @param string|array $data
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @param int $options
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function jsonp($callback, $data = [], $status = 200, array $headers = [], $options = 0)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Return a new streamed response from the application.
|
|
*
|
|
* @param \Closure $callback
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @return \Symfony\Component\HttpFoundation\StreamedResponse
|
|
*/
|
|
public function stream($callback, $status = 200, array $headers = [])
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new redirect response to the given path.
|
|
*
|
|
* @param string $path
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @param bool|null $secure
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function redirectTo($path, $status = 302, $headers = [], $secure = null)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new redirect response to a named route.
|
|
*
|
|
* @param string $route
|
|
* @param array $parameters
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function redirectToRoute($route, $parameters = [], $status = 302, $headers = [])
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new redirect response to a controller action.
|
|
*
|
|
* @param string $action
|
|
* @param array $parameters
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function redirectToAction($action, $parameters = [], $status = 302, $headers = [])
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new redirect response, while putting the current URL in the session.
|
|
*
|
|
* @param string $path
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @param bool|null $secure
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function redirectGuest($path, $status = 302, $headers = [], $secure = null)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Create a new redirect response to the previously intended location.
|
|
*
|
|
* @param string $default
|
|
* @param int $status
|
|
* @param array $headers
|
|
* @param bool|null $secure
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function redirectToIntended($default = '/', $status = 302, $headers = [], $secure = null)
|
|
{
|
|
}
|
|
}
|