test(provider): update ProbeTraitTest stub for split fetch API

The anonymous ProviderInterface implementation needs startFetch()/
resolveFetch() instead of fetch() to stay loadable.
This commit is contained in:
2026-07-07 13:31:44 +02:00
parent fcf841f7ad
commit f2bf24994c
@@ -31,7 +31,8 @@ final class ProbeTraitTest extends TestCase
public function isConfigured(): bool { return $this->configured; }
public function getName(): string { return 'test'; }
public function ping(): void { ($this->ping)(); }
public function fetch(): array { return []; }
public function startFetch(): mixed { return null; }
public function resolveFetch(mixed $handle): array { return []; }
};
}