Skip to content

Commit a492e47

Browse files
committed
ordering alphabetically and getting ready to do some more
1 parent a65b203 commit a492e47

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Aws/AbstractAwsCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,9 @@
2626

2727
/**
2828
* @author Mauricio Walters <mwalters@undergroundelephant.com>
29-
* @abstract
3029
*/
3130
abstract class AbstractAwsCommand extends ContainerAwareCommand
3231
{
33-
3432
/**
3533
* Authenticate with AWS and instantiate client
3634
*

Command/Aws/Ec2/DeregisterImageCommand.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
6060

6161
if ($options['AmiName']) {
6262
$name = $options['ImageId'];
63-
$image = $client->describeImages(["Filters" => [["Name" => "name", "Values" => [$name]]]]); # TODO if more than one instance is returned, warn the user
63+
$image = $client->describeImages(
64+
["Filters" => [["Name" => "name", "Values" => [$name]]]]
65+
);
6466
$imageId = $image['Images'][0]['ImageId'];
6567
$options['ImageId'] = $imageId;
6668
}

DependencyInjection/UecodeAwsCliExtension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Uecode\Bundle\AwsCliBundle\DependencyInjection;
44

5-
use Symfony\Component\DependencyInjection\ContainerBuilder;
65
use Symfony\Component\Config\FileLocator;
7-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
6+
use Symfony\Component\DependencyInjection\ContainerBuilder;
87
use Symfony\Component\DependencyInjection\Loader;
8+
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
99

1010
/**
1111
* This is the class that loads and manages your bundle configuration

0 commit comments

Comments
 (0)