Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Commands/ApplicationList.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()
if ($applications->isEmpty()) {
warning('No applications found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/BackgroundProcessList.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No background processes found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/BucketKeyList.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No keys found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/BucketList.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function handle()
if ($buckets->isEmpty()) {
warning('No buckets found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/CacheList.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No caches found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/CacheTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No cache types found.');

return self::FAILURE;
return self::SUCCESS;
}

$rows = collect($types)->map(fn (CacheType $type, $index) => [
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DatabaseClusterList.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No databases found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DatabaseList.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function handle()
if ($databases->isEmpty()) {
warning('No databases found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DatabaseSnapshotList.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No snapshots found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DedicatedClusterList.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No dedicated clusters found.');

return self::FAILURE;
return self::SUCCESS;
}

$rows = $items->map(fn (DedicatedCluster $cluster) => [
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DeploymentList.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No deployments found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/DomainList.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No domains found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/EnvironmentList.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function handle()
if ($envItems->isEmpty()) {
warning('No environments found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/InstanceList.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No instances found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/WebsocketApplicationList.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No WebSocket applications found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/WebsocketClusterList.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function handle()
if ($items->isEmpty()) {
warning('No WebSocket clusters found.');

return self::FAILURE;
return self::SUCCESS;
}

dataTable(
Expand Down
Loading