当我使用Z-Ray加载我的十月安装在服务器上时,我得到这个错误:
//用作解析器来更精细地分辨这些对象.
if ($concrete instanceof Closure)
{
return $concrete($this, $parameters);
}
$reflector = new ReflectionClass($concrete);
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface of Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if ( ! $reflector->isInstantiable())
{
错误来自此行:$reflector = new ReflectionClass($concrete);
作为ReflectionException.
我不知道为什么这样做,但在XAMPP上,这不存在.
谢谢