]> git.mxchange.org Git - friendica.git/commit
Possible fix for #5470: (#5506)
authorRoland Häder <Quix0r@users.noreply.github.com>
Thu, 26 Jul 2018 22:27:12 +0000 (00:27 +0200)
committerHypolite Petovan <mrpetovan@eml.cc>
Thu, 26 Jul 2018 22:27:12 +0000 (18:27 -0400)
commit1e20fd84f7e942c9cce8c1fbdecf6ec73b4c8a43
tree10ed7909bc9b44ca4ba127ce4e65f773e3e8d307
parent7e761fa514d8faae76e5e0e082a6959f6d17f236
Possible fix for #5470: (#5506)

- $data is not an object like stdClass but an array
- newer PHP versions doesn't allow cross-access like following:

  $object['foo'] = 123;
  $array->foo = 123;

- added type-hints for private methods for above cases
- used `if (empty($foo)) instead of just `if ($foo)` preventing some nasty
  E_NOTICE
- added some empty lines for better readability
src/Protocol/PortableContact.php