Skip to content

Commit ef199aa

Browse files
style(*): Pass through Phpcs fixer
1 parent 3a5ae60 commit ef199aa

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/RestClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function request(
9999
'method' => $method,
100100
'uri' => $this->baseUri.$endpoint,
101101
'content' => 'POST' === $method ? $config['http']['content'] : null,
102-
//'header' => $header, # Do not display header to avoid logging sensible data
102+
// 'header' => $header, # Do not display header to avoid logging sensible data
103103
]);
104104

105105
$response = file_get_contents($this->baseUri.$endpoint, false, $context);

tests/LoadPaginatedDecisionsTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ final class LoadPaginatedDecisionsTest extends TestCase
1010
*/
1111
public function testCanLoad10FirstDecisions(): void
1212
{
13-
//...(0, 10)
13+
// ...(0, 10)
1414
$this->markTestIncomplete('This test has not been implemented yet.');
1515
}
1616

@@ -19,7 +19,7 @@ public function testCanLoad10FirstDecisions(): void
1919
*/
2020
public function testCanLoad10LastDecisions(): void
2121
{
22-
//...(-10)
22+
// ...(-10)
2323
$this->markTestIncomplete('This test has not been implemented yet.');
2424
}
2525

@@ -28,7 +28,7 @@ public function testCanLoad10LastDecisions(): void
2828
*/
2929
public function testCanLoad5FirstDecisions(): void
3030
{
31-
//...(-10, 0)
31+
// ...(-10, 0)
3232
$this->markTestIncomplete('This test has not been implemented yet.');
3333
}
3434

@@ -37,7 +37,7 @@ public function testCanLoad5FirstDecisions(): void
3737
*/
3838
public function testCanLoadAllDecisions(): void
3939
{
40-
//...(0)
40+
// ...(0)
4141
$this->markTestIncomplete('This test has not been implemented yet.');
4242
}
4343

@@ -46,7 +46,7 @@ public function testCanLoadAllDecisions(): void
4646
*/
4747
public function testCanLoadTheSecondDecision(): void
4848
{
49-
//...(0, 2)
49+
// ...(0, 2)
5050
$this->markTestIncomplete('This test has not been implemented yet.');
5151
}
5252
}

tests/LoadPaginatedLogsTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ final class LoadPaginatedLogsTest extends TestCase
1010
*/
1111
public function testCanLoad10FirstLogInputs(): void
1212
{
13-
//...(0, 10)
13+
// ...(0, 10)
1414
$this->markTestIncomplete('This test has not been implemented yet.');
1515
}
1616

@@ -19,7 +19,7 @@ public function testCanLoad10FirstLogInputs(): void
1919
*/
2020
public function testCanLoad10LastLogInputs(): void
2121
{
22-
//...(-10)
22+
// ...(-10)
2323
$this->markTestIncomplete('This test has not been implemented yet.');
2424
}
2525

@@ -28,7 +28,7 @@ public function testCanLoad10LastLogInputs(): void
2828
*/
2929
public function testCanLoad5FirstLogInputs(): void
3030
{
31-
//...(-10, 0)
31+
// ...(-10, 0)
3232
$this->markTestIncomplete('This test has not been implemented yet.');
3333
}
3434

@@ -37,7 +37,7 @@ public function testCanLoad5FirstLogInputs(): void
3737
*/
3838
public function testCanLoadAllLogInputs(): void
3939
{
40-
//...(0)
40+
// ...(0)
4141
$this->markTestIncomplete('This test has not been implemented yet.');
4242
}
4343

@@ -46,7 +46,7 @@ public function testCanLoadAllLogInputs(): void
4646
*/
4747
public function testCanLoadTheSecondLogInput(): void
4848
{
49-
//...(0, 2)
49+
// ...(0, 2)
5050
$this->markTestIncomplete('This test has not been implemented yet.');
5151
}
5252
}

0 commit comments

Comments
 (0)