mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-13 17:20:21 +00:00
13 lines
224 B
PHP
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
|
|
) {
|
|
}
|
|
}
|