Changes:
authorRoland Häder <roland@mxchange.org>
Thu, 15 Sep 2022 00:13:36 +0000 (02:13 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 9 Jun 2023 19:45:04 +0000 (21:45 +0200)
commitd4b25cb3ffdaa824fdf099442bb1acd2fef74f98
tree42686dee351e8ae3c21c15dc44c852fc315a53dc
parente9a8882f84a229513f31d5db7abb0c8e2c6b7461
Changes:
- rewrote:
````
$arr[];
$arr['foo'] = $foo;
$arr['bar'] = $bar;
````

To:
````
$arr = [
'foo' => $foo,
'bar' => $bar,
];
````
- "imported" class name instead of referencing it everywhere
- changed some double-quotes to single
src/Protocol/Diaspora.php