1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-07 16:48:38 +00:00
This commit is contained in:
Jeremy Benoist 2019-02-27 14:33:26 +01:00
parent 3784688a88
commit ea925bb112
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
6 changed files with 10 additions and 10 deletions

View file

@ -108,7 +108,7 @@ class EntryFilterType extends AbstractType
->add('httpStatus', TextFilterType::class, [ ->add('httpStatus', TextFilterType::class, [
'apply_filter' => function (QueryInterface $filterQuery, $field, $values) { 'apply_filter' => function (QueryInterface $filterQuery, $field, $values) {
$value = $values['value']; $value = $values['value'];
if (false === array_key_exists($value, Response::$statusTexts)) { if (false === \array_key_exists($value, Response::$statusTexts)) {
return; return;
} }

View file

@ -77,7 +77,7 @@ abstract class BrowserImport extends AbstractImport
*/ */
public function parseEntry(array $importedEntry) public function parseEntry(array $importedEntry)
{ {
if ((!array_key_exists('guid', $importedEntry) || (!array_key_exists('id', $importedEntry))) && \is_array(reset($importedEntry))) { if ((!\array_key_exists('guid', $importedEntry) || (!\array_key_exists('id', $importedEntry))) && \is_array(reset($importedEntry))) {
if ($this->producer) { if ($this->producer) {
$this->parseEntriesForProducer($importedEntry); $this->parseEntriesForProducer($importedEntry);
@ -89,7 +89,7 @@ abstract class BrowserImport extends AbstractImport
return; return;
} }
if (array_key_exists('children', $importedEntry)) { if (\array_key_exists('children', $importedEntry)) {
if ($this->producer) { if ($this->producer) {
$this->parseEntriesForProducer($importedEntry['children']); $this->parseEntriesForProducer($importedEntry['children']);
@ -101,11 +101,11 @@ abstract class BrowserImport extends AbstractImport
return; return;
} }
if (!array_key_exists('uri', $importedEntry) && !array_key_exists('url', $importedEntry)) { if (!\array_key_exists('uri', $importedEntry) && !\array_key_exists('url', $importedEntry)) {
return; return;
} }
$url = array_key_exists('uri', $importedEntry) ? $importedEntry['uri'] : $importedEntry['url']; $url = \array_key_exists('uri', $importedEntry) ? $importedEntry['uri'] : $importedEntry['url'];
$existingEntry = $this->em $existingEntry = $this->em
->getRepository('WallabagCoreBundle:Entry') ->getRepository('WallabagCoreBundle:Entry')
@ -126,7 +126,7 @@ abstract class BrowserImport extends AbstractImport
// update entry with content (in case fetching failed, the given entry will be return) // update entry with content (in case fetching failed, the given entry will be return)
$this->fetchContent($entry, $data['url'], $data); $this->fetchContent($entry, $data['url'], $data);
if (array_key_exists('tags', $data)) { if (\array_key_exists('tags', $data)) {
$this->tagsAssigner->assignTagsToEntry( $this->tagsAssigner->assignTagsToEntry(
$entry, $entry,
$data['tags'] $data['tags']

View file

@ -57,7 +57,7 @@ class ChromeImport extends BrowserImport
'created_at' => substr($entry['date_added'], 0, 10), 'created_at' => substr($entry['date_added'], 0, 10),
]; ];
if (array_key_exists('tags', $entry) && '' !== $entry['tags']) { if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags']; $data['tags'] = $entry['tags'];
} }

View file

@ -57,7 +57,7 @@ class FirefoxImport extends BrowserImport
'created_at' => substr($entry['dateAdded'], 0, 10), 'created_at' => substr($entry['dateAdded'], 0, 10),
]; ];
if (array_key_exists('tags', $entry) && '' !== $entry['tags']) { if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags']; $data['tags'] = $entry['tags'];
} }

View file

@ -122,7 +122,7 @@ abstract class WallabagImport extends AbstractImport
// update entry with content (in case fetching failed, the given entry will be return) // update entry with content (in case fetching failed, the given entry will be return)
$this->fetchContent($entry, $data['url'], $data); $this->fetchContent($entry, $data['url'], $data);
if (array_key_exists('tags', $data)) { if (\array_key_exists('tags', $data)) {
$this->tagsAssigner->assignTagsToEntry( $this->tagsAssigner->assignTagsToEntry(
$entry, $entry,
$data['tags'], $data['tags'],

View file

@ -61,7 +61,7 @@ class WallabagV1Import extends WallabagImport
$data['html'] = $this->fetchingErrorMessage; $data['html'] = $this->fetchingErrorMessage;
} }
if (array_key_exists('tags', $entry) && '' !== $entry['tags']) { if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags']; $data['tags'] = $entry['tags'];
} }