Created
June 30, 2015 12:58
-
-
Save jonnybarnes/1d86979902d87a9f60cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Http\Controllers\Contrller; | |
use Illuminate\Http\Request as LaraRequest; | |
use GuzzleHttp\Psr7\Request as GuzzleRequest; | |
class FooController extends Controller | |
{ | |
public function someMethod(LaraRequest $request) | |
{ | |
return $request->input('foo'); | |
} | |
//some other method that uses "GuzzleRequest" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment