Files
testcontainers-php/src/Wait/WaitInterface.php
T
2022-10-22 23:59:29 +00:00

11 lines
136 B
PHP

<?php
declare(strict_types=1);
namespace Testcontainer\Wait;
interface WaitInterface
{
public function wait(string $id): void;
}