Skip to content

Commit 91ebb8a

Browse files
authored
Merge pull request #80 from joselfonseca/analysis-ADeRNV
Apply fixes from StyleCI
2 parents c0bbf53 + 6803fa0 commit 91ebb8a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Exceptions/AuthenticationException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function __construct(string $message, string $reason, string $user_messag
3030
* Returns true when exception message is safe to be displayed to a client.
3131
*
3232
* @api
33+
*
3334
* @return bool
3435
*/
3536
public function isClientSafe(): bool
@@ -43,6 +44,7 @@ public function isClientSafe(): bool
4344
* Value "graphql" is reserved for errors produced by query parsing or validation, do not use it.
4445
*
4546
* @api
47+
*
4648
* @return string
4749
*/
4850
public function getCategory(): string
@@ -60,7 +62,7 @@ public function extensionsContent(): array
6062
{
6163
return [
6264
'user_message' => $this->user_message,
63-
'reason' => $this->reason,
65+
'reason' => $this->reason,
6466
];
6567
}
6668
}

0 commit comments

Comments
 (0)