Skip to content

Commit 9ec09fa

Browse files
vjikgithub-actions[bot]
authored andcommitted
Apply PHP CS Fixer and Rector changes (CI)
1 parent 7503fb5 commit 9ec09fa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/Unit/ParameterDefinitionTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ public function testResolveNonTypedParameter(): void
167167
$exception = null;
168168
try {
169169
$definition->resolve($container);
170-
} catch (Throwable $exception) {}
170+
} catch (Throwable $exception) {
171+
}
171172

172173
$this->assertInstanceOf(NotInstantiableException::class, $exception);
173174
$this->assertStringStartsWith(
@@ -192,7 +193,8 @@ public function testResolveBuiltinParameter(): void
192193
$exception = null;
193194
try {
194195
$definition->resolve($container);
195-
} catch (Throwable $exception) {}
196+
} catch (Throwable $exception) {
197+
}
196198

197199
$this->assertInstanceOf(NotInstantiableException::class, $exception);
198200
$this->assertStringStartsWith(

0 commit comments

Comments
 (0)