/**
  * Refresh an instance on the given target and method.
  *
  * @param string $abstract
  * @param mixed $target
  * @param string $method
  * @return mixed 
  * @static 
  */
 public static function refresh($abstract, $target, $method)
 {
     //Method inherited from \Illuminate\Container\Container
     return \Laravel\Lumen\Application::refresh($abstract, $target, $method);
 }