コード例 #1
0
ファイル: helpers.php プロジェクト: bvqbao/app-skeleton
 /**
  * Get the available container instance.
  *
  * @param  string  $key
  * @return mixed
  */
 function container($key = null)
 {
     if (is_null($key)) {
         return Container::getInstance();
     }
     return Container::getInstance()->get($key);
 }