Files
nextcloud/php/src/Container/ContainerPorts.php
Nextcloud Team 2295a33590 Initial import
2021-11-30 11:20:42 +01:00

20 lines
321 B
PHP

<?php
namespace AIO\Container;
class ContainerPorts {
/** @var string[] */
private array $ports = [];
public function AddPort(string $port) : void {
$this->ports[] = $port;
}
/**
* @return string[]
*/
public function GetPorts() : array {
return $this->ports;
}
}