mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Code cleanup
This commit is contained in:
@@ -60,10 +60,10 @@ class UpdateRequest implements GithubRequest
|
||||
if (isset($releaseXml->entry)) {
|
||||
foreach ($releaseXml->entry as $entry) {
|
||||
$array = [
|
||||
'id' => strval($entry->id),
|
||||
'updated' => strval($entry->updated),
|
||||
'title' => strval($entry->title),
|
||||
'content' => strval($entry->content),
|
||||
'id' => (string)$entry->id,
|
||||
'updated' => (string)$entry->updated,
|
||||
'title' => (string)$entry->title,
|
||||
'content' => (string)$entry->content,
|
||||
];
|
||||
$this->releases[] = new Release($array);
|
||||
}
|
||||
|
Reference in New Issue
Block a user