Skip to content

Commit 62f4fb3

Browse files
author
nVitius
committed
Merge pull request #3 from nVitius/master
Output for commands
2 parents da8627e + 1ebfb51 commit 62f4fb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Command/Aws/Ec2/CopyImageCommand.php

+1
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
7070
}
7171

7272
$result = $client->copyImage($options);
73+
$output->writeln($result->get('ImageId'));
7374
}
7475
}

Command/Aws/Ec2/CreateImageCommand.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
6464
$client = $this->getClient();
6565

6666
$result = $client->createImage($options);
67-
68-
$output->wirteln($result);
67+
$output->writeln($result->get('ImageId'));
6968
}
7069
}

0 commit comments

Comments
 (0)