Skip to content

Commit cb4527d

Browse files
committed
qa: adapt code to follow project styles
Evidently, aligning operators is not allowed in this project. (I wish the required style guide was published with the project...)
1 parent 24fc26b commit cb4527d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/RequestIntegrationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ public function testMethodWithInvalidArguments($method)
121121
public function getInvalidMethods()
122122
{
123123
return [
124-
'null' => [null],
125-
'false' => [false],
126-
'array' => [['foo']],
124+
'null' => [null],
125+
'false' => [false],
126+
'array' => [['foo']],
127127
'object' => [new \stdClass()],
128128
];
129129
}

src/ResponseIntegrationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ public function testStatusCodeInvalidArgument($statusCode)
8383
public function getInvalidStatusCodeArguments()
8484
{
8585
return [
86-
'true' => [true],
87-
'string' => ['foobar'],
88-
'too-low' => [99],
86+
'true' => [true],
87+
'string' => ['foobar'],
88+
'too-low' => [99],
8989
'too-high' => [600],
90-
'object' => [new \stdClass()],
90+
'object' => [new \stdClass()],
9191
];
9292
}
9393

0 commit comments

Comments
 (0)