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

每天laravel-20160802| Container -5

时间:2016-05-09 11:15:12      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:laravel

/**
 * Get the Closure to be used when building a type.
 * Get the Closure to be used when building a type.
 * @param  string  $abstract
 * @param  string  $concrete
 * @return \Closure
 */
protected function getClosure($abstract, $concrete)// one is abstract other is concrete
{
    return function ($c, $parameters = []) use ($abstract, $concrete) {// like get four parameters
        $method = ($abstract == $concrete) ? ‘build‘ : ‘make‘;// create the new type by class type.

        return $c->$method($concrete, $parameters);// return the instance of the class ,
    };
}


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

每天laravel-20160802| Container -5

标签:laravel

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

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