We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea36d99 commit bc1ca82Copy full SHA for bc1ca82
1 file changed
tests/Runtime/LambdaRuntimeTest.php
@@ -46,7 +46,7 @@ protected function tearDown(): void
46
47
public function testFromEnvironmentVariable()
48
{
49
- $getTimeout = function($runtime) {
+ $getTimeout = function ($runtime) {
50
$reflectionProp = (new \ReflectionObject($runtime))->getProperty('timeout');
51
$reflectionProp->setAccessible(true);
52
@@ -66,7 +66,7 @@ public function testFromEnvironmentVariable()
66
$this->assertEquals(0, $getTimeout(LambdaRuntime::fromEnvironmentVariable(0)));
67
$this->assertEquals(10, $getTimeout(LambdaRuntime::fromEnvironmentVariable(10)));
68
}
69
-
+
70
public function test basic behavior()
71
72
$this->givenAnEvent(['Hello' => 'world!']);
0 commit comments