Skip to content

Commit af4e42f

Browse files
committed
feat: add cache engine to cache:list command
1 parent f630414 commit af4e42f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Command/Cache/ListCachesCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function configure()
4040
protected function perform()
4141
{
4242
$this->output->table(
43-
['Id', 'Name', 'Provider', 'Network', 'Region', 'Status', 'Type'],
43+
['Id', 'Name', 'Provider', 'Network', 'Region', 'Status', 'Engine', 'Type'],
4444
$this->apiClient->getCaches($this->cliConfiguration->getActiveTeamId())->map(function (array $cache) {
4545
return [
4646
$cache['id'],
@@ -49,6 +49,7 @@ protected function perform()
4949
$cache['network']['name'],
5050
$cache['region'],
5151
$this->output->formatStatus($cache['status']),
52+
$cache['engine'],
5253
$cache['type'],
5354
];
5455
})->all()

0 commit comments

Comments
 (0)