Skip to content

Commit 25c97d4

Browse files
authored
Apply fixes from StyleCI (#117)
1 parent f7c097d commit 25c97d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Entities/Entity.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function __construct(array $responseData = null)
5050
*/
5151
protected function setResponseData(array $responseData): void
5252
{
53-
if (!Arr::exists($responseData, 'object')) {
53+
if (! Arr::exists($responseData, 'object')) {
5454
throw new HandlingException('invalid json-array: no object given');
5555
}
5656

@@ -65,7 +65,7 @@ protected function setResponseData(array $responseData): void
6565
throw NotionException::instance('Not found', compact('responseData'));
6666
}
6767

68-
if (!Arr::exists($responseData, 'id')) {
68+
if (! Arr::exists($responseData, 'id')) {
6969
throw HandlingException::instance('invalid json-array: no id provided');
7070
}
7171

0 commit comments

Comments
 (0)