首页 > 其他 > 详细

每天laravel-20160730| Container -2

时间:2016-05-04 19:25:32      阅读:129      评论:0      收藏:0      [点我收藏+]
/**
    * Determine if the given abstract type has been bound.
    *
    * @param  string  $abstract
    * @return bool
    */
   public function bound($abstract)
   {
       $abstract = $this->normalize($abstract);// the function is to delete the \ on the left if has

       return isset($this->bindings[$abstract]) || isset($this->instances[$abstract]) || $this->isAlias($abstract);
   }// Determine if the given abstract type has been bound.
// sorry today is a lazy day.


本文出自 “专注php” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1770009

每天laravel-20160730| Container -2

原文:http://jingshanls.blog.51cto.com/3357095/1770009

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!