fix code style

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2021-06-22 12:59:34 +02:00
parent 3d6ffd3da2
commit d64411e9df
No known key found for this signature in database
GPG key ID: 7424F1874854DF23
2 changed files with 2 additions and 2 deletions

View file

@ -419,7 +419,7 @@ class AccountManager implements IAccountManager {
}
}
protected function dataArrayToJson(array $accountData): string {
protected function dataArrayToJson(array $accountData): string {
$jsonData = [];
foreach ($accountData as $property => $data) {
//$property = $data['name'];

View file

@ -71,7 +71,7 @@ class Hooks implements IEventListener {
}
public function handle(Event $event): void {
if(!$event instanceof UserChangedEvent) {
if (!$event instanceof UserChangedEvent) {
return;
}
$this->changeUserHook($event->getUser(), $event->getFeature(), $event->getValue());