summaryrefslogtreecommitdiff
path: root/src/ReadabilityInterface.php
diff options
context:
space:
mode:
authorAndres Rey <[email protected]>2016-10-18 09:40:44 +0100
committerAndres Rey <[email protected]>2016-10-18 09:40:44 +0100
commita92863189af61a1f3c86d42815ee04b5e2353cc9 (patch)
tree1a014b62ebba83619ab297e7bc4be8f970424467 /src/ReadabilityInterface.php
parent97a4510dd24aa15985b1178bcb82627589355ac8 (diff)
Base for readability object class and interface
Diffstat (limited to 'src/ReadabilityInterface.php')
-rw-r--r--src/ReadabilityInterface.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ReadabilityInterface.php b/src/ReadabilityInterface.php
new file mode 100644
index 0000000..8e659a3
--- /dev/null
+++ b/src/ReadabilityInterface.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace andreskrey\Readability;
+
+interface ReadabilityInterface
+{
+ public function getScore();
+}