Skip to content

Commit 8ad73b5

Browse files
committed
fix styleci "new line before break" errors
1 parent 81efd33 commit 8ad73b5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,15 +470,19 @@ private function createAuthenticationPluginNode()
470470
switch ($config['type']) {
471471
case 'basic':
472472
$this->validateAuthenticationType(['username', 'password'], $config, 'basic');
473+
473474
break;
474475
case 'bearer':
475476
$this->validateAuthenticationType(['token'], $config, 'bearer');
477+
476478
break;
477479
case 'service':
478480
$this->validateAuthenticationType(['service'], $config, 'service');
481+
479482
break;
480483
case 'wsse':
481484
$this->validateAuthenticationType(['username', 'password'], $config, 'wsse');
485+
482486
break;
483487
}
484488

Tests/Unit/Collector/StackPluginTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function testOnException()
184184

185185
public function testOnError()
186186
{
187-
if (!interface_exists(\Throwable::class)) {
187+
if (PHP_VERSION_ID <= 70000) {
188188
$this->markTestSkipped();
189189
}
190190

0 commit comments

Comments
 (0)