매일laravel-20160816|Container -19
/**
* If extra parameters are passed by numeric ID, rekey them by argument name.
*
* @param array $dependencies
* @param array $parameters
* @return array
*/
protected function keyParametersByArgument(array $dependencies, array $parameters)
{// this function is work for change the numeric ID key to string name key
foreach ($parameters as $key => $value) {// loop the parameters
if (is_numeric($key)) {// if a numeric
unset($parameters[$key]);// first unset it
$parameters[$dependencies[$key]->name] = $value;// then parameters return
// get the string key
}
}
return $parameters;
}
/**
* Register a new resolving callback.
*
* @param string $abstract
* @param \Closure|null $callback
* @return void
*/
public function resolving($abstract, Closure $callback = null)
{
if ($callback === null && $abstract instanceof Closure) {// if no callback and abstract is a Closure
$this->resolvingCallback($abstract);// get the call back,use another way to save it
} else {
$this->resolvingCallbacks[$this->normalize($abstract)][] = $callback;// save the function to the abstract
}
}// register a new function for callback
/**
* Register a new after resolving callback for all types.
*
* @param string $abstract
* @param \Closure|null $callback
* @return void
*/
public function afterResolving($abstract, Closure $callback = null)
{// set the callback function used after resolve function done
if ($abstract instanceof Closure && $callback === null) {
$this->afterResolvingCallback($abstract);// if null, use other function
} else {
$this->afterResolvingCallbacks[$this->normalize($abstract)][] = $callback;
}// register the callback to the array store
}//
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
useEffect 안에서의 리턴??인스타 클론하다가 또 다시 배운 기능이다. useEffect안에서 리턴을 한다?? 찾아보니 componentWillUnmount와 같은 효과를 낸다는 것이다. useEffect안에서 return을 하면 정리의 개념으...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.