. */ namespace SP\Tests\Stubs; use Closure; /** * Trait TransactionAwareTrait */ trait TransactionAwareTrait { public function transactionAware(Closure $closure, object $newThis): mixed { return $closure->call($newThis); } }