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

每天laravel-20160807| Container -10

时间:2016-05-16 11:14:34      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:definition   different   function   abstract   public   

   /**
    * Alias a type to a different name.
    *
    * @param  string  $abstract
    * @param  string  $alias
    * @return void
    */
   public function alias($abstract, $alias)
   {
       $this->aliases[$alias] = $this->normalize($abstract);// i know this ,set the alias as a key , abstract function as a value.
   }// a easy function that to set a alias for a different name

   /**
    * Extract the type and alias from a given definition.
    *
    * @param  array  $definition
    * @return array
    */
   protected function extractAlias(array $definition)
   {
       return [key($definition), current($definition)];
   }// function ‘key‘ is get the current key.
// function ‘current‘ is get the current value,
// so that means to get the current array


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

每天laravel-20160807| Container -10

标签:definition   different   function   abstract   public   

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

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