mirror of
https://github.com/stan220/testcontainers-php.git
synced 2026-09-09 06:29:49 +00:00
11 lines
136 B
PHP
11 lines
136 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Testcontainer\Wait;
|
|
|
|
interface WaitInterface
|
|
{
|
|
public function wait(string $id): void;
|
|
}
|