Ejemplo n.º 1
0
 /**
  * Determine if the given abstract type has been bound.
  *
  * @param  string  $abstract
  * @return bool
  */
 public function bound($abstract)
 {
     return isset($this[$abstract]) || isset($this->instances[$abstract]) || isset($this->parent) && $this->parent->bound($abstract);
 }