/**
  * Bind a shared Closure into the container.
  *
  * @param string $abstract
  * @param \Closure $closure
  * @return void 
  * @deprecated since version 5.1. Use singleton instead.
  * @static 
  */
 public static function bindShared($abstract, $closure)
 {
     //Method inherited from \Illuminate\Container\Container
     \Laravel\Lumen\Application::bindShared($abstract, $closure);
 }