refactor: change private properties to public in Container class and update related methods

Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
This commit is contained in:
Jean-Yves 2026-01-10 15:07:08 +01:00
parent 759cab0a6b
commit cdd21ae1ff
No known key found for this signature in database
GPG key ID: 644C8B9C4CABAEF7
6 changed files with 105 additions and 193 deletions

View file

@ -25,7 +25,7 @@ readonly class ContainerDefinitionFetcher {
$containers = $this->FetchDefinition();
foreach ($containers as $container) {
if ($container->GetIdentifier() === $id) {
if ($container->identifier === $id) {
return $container;
}
}