MModStartinit
1e1f174c创建于 2022年5月28日历史提交
<?php

namespace Illuminate\Contracts\Routing;

/**
 * @deprecated since version 5.1.
 */
interface TerminableMiddleware extends Middleware
{
    /**
     * Perform any final actions for the request lifecycle.
     *
     * @param  \Symfony\Component\HttpFoundation\Request  $request
     * @param  \Symfony\Component\HttpFoundation\Response  $response
     * @return void
     */
    public function terminate($request, $response);
}