]> git.mxchange.org Git - friendica.git/commit
Rewrite:
authorRoland Häder <roland@mxchange.org>
Mon, 12 Sep 2022 21:12:11 +0000 (23:12 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Jan 2024 00:02:59 +0000 (01:02 +0100)
commitc13244b0b32345da495a41264f9bd54f10063504
treeb0d24e390f2c5197876b6160441426076a647305
parentbbd684807d0ed8065f31c587fdff1c6b12dc33a1
Rewrite:
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:

From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````

To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints
src/Model/Contact.php
src/Protocol/DFRN.php