]> 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:03:01 +0000 (01:03 +0100)
commitceb04c0726db3ed51db2d34b9df18245724c7be8
tree1c86ef30250b2eab5146b87e5f6ea90f4c47baee
parentd5ad0ed66af360f51c5eb47ed112fdde0269875f
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/Database/Database.php