Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Created May 22, 2015 19:46
Show Gist options
  • Save vinicius73/51c4857f9f02a9a14dac to your computer and use it in GitHub Desktop.
Save vinicius73/51c4857f9f02a9a14dac to your computer and use it in GitHub Desktop.
app('route')->get
<?php
/**
* Get the available container instance.
*
* @param string $make
* @param array $parameters
* @return mixed|\Illuminate\Foundation\Application
*/
function app($make = null, $parameters = [])
{
if (is_null($make)) return Container::getInstance();
return Container::getInstance()->make($make, $parameters);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment