Skip to content

Commit 0e80341

Browse files
committed
Fixing style
1 parent c04e3be commit 0e80341

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/Compute/v2/Api.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,5 +660,4 @@ public function getHypervisorsDetail(): array
660660
$definition['path'] .= '/detail';
661661
return $definition;
662662
}
663-
664663
}

src/Compute/v2/Models/Hypervisor.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
/**
99
* @property \OpenStack\Compute\v2\Api $api
1010
*/
11-
class Hypervisor extends OperatorResource implements
12-
Listable
11+
class Hypervisor extends OperatorResource implements Listable
1312
{
1413
/** @var string */
1514
public $id;
@@ -65,5 +64,4 @@ class Hypervisor extends OperatorResource implements
6564
protected $resourceKey = 'hypervisor';
6665
protected $resourcesKey = 'hypervisors';
6766
protected $markerKey = 'id';
68-
6967
}

src/Compute/v2/Service.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,4 @@ public function listHypervisors(bool $detailed = false, array $options = [], cal
216216
$def = ($detailed === true) ? $this->api->getHypervisorsDetail() : $this->api->getHypervisors();
217217
return $this->model(Hypervisor::class)->enumerate($def, $options, $mapFn);
218218
}
219-
220219
}

0 commit comments

Comments
 (0)