Skip to content

Commit 8af96d8

Browse files
committed
Ran PHP-CS-Fixer to finished this coding style issue.
1 parent 447b30f commit 8af96d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/FabianBeiner/Todoist/TodoistClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected function validateId($id): bool
103103
{
104104
$filterOptions = ['options' => ['min_range' => 0]];
105105

106-
return (bool)filter_var($id, FILTER_VALIDATE_INT, $filterOptions);
106+
return (bool) filter_var($id, FILTER_VALIDATE_INT, $filterOptions);
107107
}
108108

109109
/**

tests/FabianBeiner/Todoist/TodoistClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ public function clientOptions()
120120
[
121121
[
122122
'base_uri' => 'https://google.com',
123-
'headers' => [
123+
'headers' => [
124124
'X-CUSTOM-HEADER' => 'test',
125-
'Authorization' => 'Basic someuser',
125+
'Authorization' => 'Basic someuser',
126126
],
127127
],
128128
],

0 commit comments

Comments
 (0)