mirror of
https://github.com/stan220/testcontainers-php.git
synced 2026-09-08 21:29:39 +00:00
- Added random port logic - Updated wait wtrategies - API alignments to make it similar to other official implementations - ...
11 lines
149 B
PHP
11 lines
149 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Testcontainers\Utils\PortGenerator;
|
|
|
|
interface PortGenerator
|
|
{
|
|
public function generatePort(): int;
|
|
}
|