Example #1
0
File: App.php Project: pinepain/ape
 /**
  * Register a binding with the container.
  *
  * @param  string              $abstract
  * @param  Closure|string|null $concrete
  * @param  bool                $shared
  *
  * @return void
  */
 public static function bind($abstract, $concrete = null, $shared = false)
 {
     return Ape\Application::bind($abstract, $concrete, $shared);
 }