Added vendor/ directory for Composer's installed files
This commit is contained in:
14
vendor/illuminate/contracts/Routing/TerminableMiddleware.php
vendored
Executable file
14
vendor/illuminate/contracts/Routing/TerminableMiddleware.php
vendored
Executable file
@ -0,0 +1,14 @@
|
||||
<?php namespace Illuminate\Contracts\Routing;
|
||||
|
||||
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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user