Files
fresh/src/Configuration/SingleImageConfiguration.php
T

21 lines
320 B
PHP
Raw Normal View History

2022-03-11 01:55:35 +01:00
<?php
namespace NoccyLabs\FreshDocker\Configuration;
use Symfony\Component\Yaml\Yaml;
class SingleImageConfiguration
{
private $image;
public function __construct(string $image)
{
$this->image = $image;
}
public function getChecks(): array
{
return [ $this->image ];
}
}