Skip to content

Commit c9ba63f

Browse files
committed
StyleCI fixups
1 parent b23f408 commit c9ba63f

5 files changed

+10
-8
lines changed

src/Kinds/K8sJob.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,6 @@ public function getDurationInSeconds(): int
151151
*/
152152
public function hasCompleted(): bool
153153
{
154-
return !is_null($this->getCompletionTime());
154+
return ! is_null($this->getCompletionTime());
155155
}
156156
}

tests/JobTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ public function runCreationTests()
130130

131131
K8sJob::selectPods(function ($job) {
132132
$this->assertInstanceOf(K8sJob::class, $job);
133+
133134
return ['tier' => 'compute'];
134135
});
135136

tests/PersistentVolumeClaimTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function runCreationTests()
7979
$this->assertEquals('standard', $pvc->getStorageClass());
8080

8181
if ($standard->getVolumeBindingMode() == 'Immediate') {
82-
while (!$pvc->isBound()) {
82+
while (! $pvc->isBound()) {
8383
dump("Waiting for PVC {$pvc->getName()} to be bound...");
8484
sleep(1);
8585
$pvc->refresh();

tests/PodDisruptionBudgetTest.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,16 @@ public function runUpdateTests()
159159
$pdb = $this->cluster->getPodDisruptionBudgetByName('mysql-pdb')->setMinAvailable('25%')->createOrUpdate();
160160
} catch (KubernetesAPIException $e) {
161161
if ($e->getCode() == 409) {
162-
sleep(2*$backoff);
162+
sleep(2 * $backoff);
163163
$backoff++;
164164
} else {
165165
throw $e;
166166
}
167-
if ($backoff > 3)
167+
if ($backoff > 3) {
168168
break;
169+
}
169170
}
170-
} while (!isset($pdb));
171+
} while (! isset($pdb));
171172

172173
$this->assertTrue($pdb->isSynced());
173174

tests/PodTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ public function test_pod_exec()
127127
}
128128

129129
$messages = $pod->exec(['/bin/sh', '-c', 'echo 1 && echo 2 && echo 3'], 'busybox-exec');
130-
$desiredOutput = collect($messages)->where('channel', 'stdout')->reduce(function(?string $carry, array $message) {
131-
return $carry .= preg_replace('/\s+/', '', $message['output']);
130+
$desiredOutput = collect($messages)->where('channel', 'stdout')->reduce(function (?string $carry, array $message) {
131+
return $carry .= preg_replace('/\s+/', '', $message['output']);
132132
});
133-
$this->assertEquals("123", $desiredOutput);
133+
$this->assertEquals('123', $desiredOutput);
134134

135135
$pod->delete();
136136
}

0 commit comments

Comments
 (0)