Continued:

- added missing spaces/curly braces
- some more usage of dbm::is_result()
- 2 oppsite if() statements can be mored to else
- added more TODOs for type-hinting

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2017-01-26 10:01:15 +01:00 committed by Roland Haeder
parent bf0a07b7ae
commit 4c72cb3584
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class ostatus {
$alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
if (is_object($alternate)) {
/// @TODO foreach () may only later work on objects that have iterator interface implemented, please check this
/// @TODO foreach() may only later work on objects that have iterator interface implemented, please check this
foreach ($alternate AS $attributes) {
if ($attributes->name == "href") {
$author["author-link"] = $attributes->textContent;
@ -1138,7 +1138,7 @@ class ostatus {
continue;
}
/// @TODO One statment is okay (until if () )
/// @TODO One statment is okay (until if() )
$arr = array();
$arr["network"] = $details["network"];
$arr["uri"] = $single_conv->id;