diff --git a/legacy/src/Command/Resources/ResourcesGetCommand.php b/legacy/src/Command/Resources/ResourcesGetCommand.php index 75444bc9..6402393b 100644 --- a/legacy/src/Command/Resources/ResourcesGetCommand.php +++ b/legacy/src/Command/Resources/ResourcesGetCommand.php @@ -24,7 +24,7 @@ class ResourcesGetCommand extends ResourcesCommandBase { /** @var array */ protected array $tableHeader = [ - 'service' => 'App or service', + 'service' => 'Container', 'type' => 'Type', 'profile' => 'Profile', 'profile_size' => 'Size', diff --git a/legacy/src/Command/Resources/ResourcesSetCommand.php b/legacy/src/Command/Resources/ResourcesSetCommand.php index a33272fa..25a559c4 100644 --- a/legacy/src/Command/Resources/ResourcesSetCommand.php +++ b/legacy/src/Command/Resources/ResourcesSetCommand.php @@ -714,7 +714,7 @@ private function parseSetting(InputInterface $input, string $optionName, array $ [$pattern, $value] = $parts; $givenServiceNames = Wildcard::select($serviceNames, [$pattern]); if (empty($givenServiceNames)) { - $errors[] = sprintf('App or service %s not found.', $pattern); + $errors[] = sprintf('Container %s not found.', $pattern); continue; } foreach ($givenServiceNames as $name) {