aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/phinde/Fetcher.php2
-rw-r--r--src/phinde/Indexer.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/phinde/Fetcher.php b/src/phinde/Fetcher.php
index 7cf11b7..666d7ed 100644
--- a/src/phinde/Fetcher.php
+++ b/src/phinde/Fetcher.php
@@ -29,7 +29,7 @@ class Fetcher
$types = array();
foreach ($actions as $action) {
- $types = array_merge($action::$supportedTypes);
+ $types = array_merge($types, array_keys($action::$supportedTypes));
}
$types = array_unique($types);
diff --git a/src/phinde/Indexer.php b/src/phinde/Indexer.php
index bdd5236..4885b7a 100644
--- a/src/phinde/Indexer.php
+++ b/src/phinde/Indexer.php
@@ -4,8 +4,8 @@ namespace phinde;
class Indexer
{
static $supportedTypes = array(
- 'application/xhtml+xml',
- 'text/html',
+ 'application/xhtml+xml' => true,
+ 'text/html' => true,
);
public function run(Retrieved $retrieved)