我正在使用带有 SQLite DB 的 Lumen。我已经尝试了所有我能想到的DB::transaction
在 Lumen 中使用的方法,但无济于事。我一直收到这样的错误:
ReflectionException: /vendor/illuminate/container/Container.php line 779
我试过把它放在use DB;
班级的首位。我已经尝试use
过门面。似乎没有任何效果。
尝试使用它的简单示例:
DB::transaction(function () use ($attributes, $service) {
$this->person = $this->person->create([]);
// do some other stuff
});