podmanImageManager/imageAnnotations.php

27 lines
607 B
PHP
Raw Normal View History

2020-10-06 02:11:36 -04:00
<?php
namespace podmanImageManager;
use objectStructs\objectStructs;
class imageAnnotations extends objectStructs
{
/** @var string */
public $purpose;
/** @var string */
public $hostController;
/** @var string */
public $clientController;
2020-12-04 21:00:36 -05:00
/** @var array Web, Database, php-fpm, etc roles that the container will play */
public $roles = array();
public function __construct($Result = null)
{
parent::__construct($Result);
if ($this->roles and empty($this->roles) )
{
$this->roles = explode(',',$this->roles);
}
}
2020-10-06 02:11:36 -04:00
}