mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix code style
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
3d6ffd3da2
commit
d64411e9df
2 changed files with 2 additions and 2 deletions
|
|
@ -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'];
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue