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