Remove WaitForNothing. WaitForContainerRunning can be used as a basic implementation instead.

This commit is contained in:
Sergei Shitikov
2024-09-01 17:05:31 +02:00
parent de66ea607c
commit 3dd4d2525a
4 changed files with 7 additions and 15 deletions
-13
View File
@@ -1,13 +0,0 @@
<?php
declare(strict_types=1);
namespace Testcontainers\Wait;
class WaitForNothing implements WaitInterface
{
public function wait(string $id): void
{
// does nothing
}
}