. */ namespace SP\Tests\Stubs; use Closure; use SP\Domain\Account\Ports\PublicLinkRepositoryInterface; /** * Class AbstractPublicLinkRepositoryStub */ abstract class PublicLinkRepositoryStub implements PublicLinkRepositoryInterface { public function transactionAware(Closure $closure, object $newThis): mixed { return $closure->call($newThis); } }