我需要帮助来解决这个问题
在Macroable.php第99行中: 方法foregin不存在。
图片链接1:https://prnt.sc/n2z0gl 图片链接2:https://prnt.sc/n2z0mu
使用了这个:
namespace Illuminate\Support\Traits;
use Closure;
use ReflectionClass;
use ReflectionMethod;
use BadMethodCallException;
编码行:
public function __call($method, $parameters)
{
if (! static::hasMacro($method)) {
throw new BadMethodCallException("Method {$method} does not exist.");
}
$macro = static::$macros[$method];
if ($macro instanceof Closure) {
return call_user_func_array($macro->bindTo($this, static::class), $parameters);
}
return call_user_func_array($macro, $parameters);
}
}