예제 #1
0
 /**
  * Wrap a Closure such that it is shared.
  *
  * @param  Closure  $closure
  * @return Closure
  */
 public static function share(Closure $closure)
 {
     return static::$instance->share($closure);
 }