码迷,mamicode.com
首页 > 其他好文 > 详细

每天laravel-20160809| Container -12

时间:2016-05-18 10:59:28      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:function   abstract   return   null   

   /**
    * Get the rebound callbacks for a given type.
    *
    * @param  string  $abstract
    * @return array
    */
   protected function getReboundCallbacks($abstract)
   {
       if (isset($this->reboundCallbacks[$abstract])) {// if has the value in the reboundcallbacks array
           return $this->reboundCallbacks[$abstract];// return it
       }

       return [];// return a null array
   }// Get the rebound callbacks for a given type.

   /**
    * Wrap the given closure such that its dependencies will be injected when executed.
    *
    * @param  \Closure  $callback
    * @param  array  $parameters
    * @return \Closure
    */
   public function wrap(Closure $callback, array $parameters = [])
   {
       return function () use ($callback, $parameters) {
           return $this->call($callback, $parameters);// a waste
       };
   }// Wrap the given closure such that its
// set the given closure into the dependencies will be injected
// when it is executed we will fire the given closure


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

每天laravel-20160809| Container -12

标签:function   abstract   return   null   

原文地址:http://jingshanls.blog.51cto.com/3357095/1774600

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!