Example #1
0
 /**
  * Wrap a Closure such that it is shared.
  *
  * @param \Closure $closure
  * @return \Closure 
  * @static 
  */
 public static function share($closure)
 {
     //Method inherited from \Illuminate\Container\Container
     return \October\Rain\Foundation\Application::share($closure);
 }