all-in-one/php/src/Container/ContainerPort.php
Simon L. eba86c3ad1 add declare(strict_types=1); to all php files
Signed-off-by: Simon L. <szaimen@e.mail.de>
2026-02-03 13:25:53 +01:00

13 lines
224 B
PHP

<?php
declare(strict_types=1);
namespace AIO\Container;
class ContainerPort {
public function __construct(
public string $port,
public string $ipBinding,
public string $protocol
) {
}
}