/**
  * Get the root Facade application instance.
  *
  * @param  string  $make
  * @return mixed
  */
 function app($make = null)
 {
     if (!is_null($make)) {
         return app()->make($make);
     }
     return Illuminate\Support\Facades\Facade::getFacadeApplication();
 }