Skip to content

Commit ffbc9bc

Browse files
author
Jamie Hannaford
committed
fix styling
1 parent 9419048 commit ffbc9bc

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

src/Common/Service/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@ private function mergeOptions(array $serviceOptions)
167167

168168
return $options;
169169
}
170-
}
170+
}

tests/integration/BlockStorage/V2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\BlockStorage;
3+
namespace OpenStack\integration\BlockStorage;
44

55
use OpenStack\BlockStorage\v2\Models\Snapshot;
66
use OpenStack\BlockStorage\v2\Models\Volume;

tests/integration/Compute/V2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\Compute;
3+
namespace OpenStack\integration\Compute;
44

55
use OpenStack\Compute\v2\Models\Flavor;
66
use OpenStack\Compute\v2\Models\Image;

tests/integration/DefaultLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration;
3+
namespace OpenStack\integration;
44

55
use Psr\Log\AbstractLogger;
66

tests/integration/Identity/V2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\Identity;
3+
namespace OpenStack\integration\Identity;
44

55
use OpenStack\Integration\TestCase;
66

tests/integration/Identity/V3Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\Identity;
3+
namespace OpenStack\integration\Identity;
44

55
use OpenStack\Identity\v3\Models;
66
use OpenStack\Integration\TestCase;

tests/integration/Images/V2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\Images;
3+
namespace OpenStack\integration\Images;
44

55
use OpenStack\Images\v2\Models\Image;
66
use OpenStack\Images\v2\Models\Member;

tests/integration/Networking/V2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\Networking;
3+
namespace OpenStack\integration\Networking;
44

55
use OpenStack\Networking\v2\Models\Network;
66
use OpenStack\Networking\v2\Models\Port;

tests/integration/ObjectStore/V1Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration\ObjectStore;
3+
namespace OpenStack\integration\ObjectStore;
44

55
use OpenStack\Integration\TestCase;
66
use OpenStack\Integration\Utils;

tests/integration/Runner.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace OpenStack\Integration;
3+
namespace OpenStack\integration;
44

55
class Runner
66
{
@@ -35,7 +35,7 @@ private function getOpts()
3535
{
3636
$opts = getopt('s:v:t:', ['service:', 'version:', 'test::', 'debug::', 'help::']);
3737

38-
$getOpt = function(array $keys, $default) use ($opts) {
38+
$getOpt = function (array $keys, $default) use ($opts) {
3939
foreach ($keys as $key) {
4040
if (isset($opts[$key])) {
4141
return $opts[$key];
@@ -93,7 +93,7 @@ private function getTest($serviceName, $version, $verbosity)
9393

9494
public function runServices()
9595
{
96-
list ($serviceOpt, $versionOpt, $testMethodOpt, $verbosityOpt) = $this->getOpts();
96+
list($serviceOpt, $versionOpt, $testMethodOpt, $verbosityOpt) = $this->getOpts();
9797

9898
foreach ($this->getRunnableServices($serviceOpt, $versionOpt) as $serviceName => $versions) {
9999
foreach ($versions as $version) {

0 commit comments

Comments
 (0)