Laravel: 未找到 Throwable
Laravel: Throwable not found
我将这段代码添加到我的代码中:
$billingAddress = PartnerAddress::where([
['partner_id' => $partner->id],
['address_type' => 1],
])
->get();
我得到了:
(1/1) FatalErrorException
Interface 'Throwable' not found in DriverException.php (line 33)
可能是什么错误?日志是一样的,我没有根据这个错误找到任何东西。
我遇到了这个问题并通过 运行 "composer dump-autoload" 解决了。
我将这段代码添加到我的代码中:
$billingAddress = PartnerAddress::where([
['partner_id' => $partner->id],
['address_type' => 1],
])
->get();
我得到了:
(1/1) FatalErrorException
Interface 'Throwable' not found in DriverException.php (line 33)
可能是什么错误?日志是一样的,我没有根据这个错误找到任何东西。
我遇到了这个问题并通过 运行 "composer dump-autoload" 解决了。