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