매일laravel-20160815|Container -18
/**
* Resolve a non-class hinted dependency.
*
* @param \ReflectionParameter $parameter
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
protected function resolveNonClass(ReflectionParameter $parameter)
{// the parameter is a RefectionParameter $parameter
if (! is_null($concrete = $this->getContextualConcrete('$'.$parameter->name))) {
// if can get the concrete
if ($concrete instanceof Closure) {// if the concrete is a instance of Closure
return call_user_func($concrete, $this);// return the call_user_func
} else {
return $concrete;// return concrete
}
}
if ($parameter->isDefaultValueAvailable()) {// if has
return $parameter->getDefaultValue();// return it
}
// other ,set the bad message and return it
// some time the message is very good use double " ,yeah
$message = "Unresolvable dependency resolving [$parameter] in class {$parameter->getDeclaringClass()->getName()}";
throw new BindingResolutionException($message);// throw bad message
}
/**
* Resolve a class based dependency from the container.
*
* @param \ReflectionParameter $parameter
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
protected function resolveClass(ReflectionParameter $parameter)
{// the class is based dependency from the container.
try {
return $this->make($parameter->getClass()->name);
}// try check this class name whether can be make
// If we can not resolve the class instance, we will check to see if the value
// is optional, and if it is we will return the optional parameter value as
// the value of the dependency, similarly to how we do this with scalars.
catch (BindingResolutionException $e) {// catch the exception
if ($parameter->isOptional()) {// if we has the Optional
return $parameter->getDefaultValue();
}
throw $e;// throw $e
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
useEffect 안에서의 리턴??인스타 클론하다가 또 다시 배운 기능이다. useEffect안에서 리턴을 한다?? 찾아보니 componentWillUnmount와 같은 효과를 낸다는 것이다. useEffect안에서 return을 하면 정리의 개념으...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.