Commit ea1c485e authored by Oana-Eliza Alexa's avatar Oana-Eliza Alexa
Browse files

fix indent

1 merge request!76Draft: Resolve "Redesign notifications class"
Showing with 10 additions and 10 deletions
+10 -10
...@@ -196,13 +196,13 @@ class ReminderTokenUtils ...@@ -196,13 +196,13 @@ class ReminderTokenUtils
return $result; return $result;
} }
/** /**
* @param string $text * @param string $text
* @return string * @return string
* Note : This come from jwtToken, as it is completely private - it is cloned here for now. * Note : This come from jwtToken, as it is completely private - it is cloned here for now.
*/ */
private function base64urlEncode (string $text): string private function base64urlEncode (string $text): string
{ {
return str_replace(["+", "/", "="], ["A", "B", ""], base64_encode($text)); return str_replace(["+", "/", "="], ["A", "B", ""], base64_encode($text));
} }
} }
\ No newline at end of file
...@@ -5,7 +5,7 @@ class Reminder implements EndpointInterface ...@@ -5,7 +5,7 @@ class Reminder implements EndpointInterface
private TaskGateway $gateway; private TaskGateway $gateway;
private ReminderTokenUtils $reminderTokenUtils; private ReminderTokenUtils $reminderTokenUtils;
public function __construct (TaskGateway $gateway) public function __construct (TaskGateway $gateway)
{ {
$this->gateway = $gateway; $this->gateway = $gateway;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment