mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
12 lines
199 B
PHP
12 lines
199 B
PHP
<?php
|
|
|
|
namespace AIO\Container;
|
|
|
|
class ContainerPort {
|
|
public function __construct(
|
|
public string $port,
|
|
public string $ipBinding,
|
|
public string $protocol
|
|
) {
|
|
}
|
|
}
|