update constructor

Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
This commit is contained in:
Jean-Yves 2024-10-07 10:12:43 +02:00
parent 69d9c925d0
commit 496ec9ba17
No known key found for this signature in database
GPG key ID: 644C8B9C4CABAEF7
13 changed files with 84 additions and 193 deletions

View file

@ -6,12 +6,11 @@ use AIO\ContainerDefinitionFetcher;
use AIO\Data\ConfigurationManager;
use GuzzleHttp\Client;
class DockerHubManager
{
readonly class DockerHubManager {
private Client $guzzleClient;
public function __construct()
{
public function __construct(
) {
$this->guzzleClient = new Client();
}
@ -59,4 +58,4 @@ class DockerHubManager
return null;
}
}
}
}