Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Last active August 29, 2015 14:21
Show Gist options
  • Save vinicius73/67ed171132159c765b51 to your computer and use it in GitHub Desktop.
Save vinicius73/67ed171132159c765b51 to your computer and use it in GitHub Desktop.
Contornando facades
<?php
$route = Route::getFacadeRoot(); ## \Illuminate\Routing\Router
$route = app('router'); ## \Illuminate\Routing\Router
$route->get();
#######################################
use Illuminate\Http\Request;
class SameController extends Controller
{
/**
* @var Request;
*/
protected $request;
function __construct(Request $request)
{
$this->request = $request;
}
## ..........
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment