aboutsummaryrefslogtreecommitdiff
path: root/src/phinde/LinkInfo.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/phinde/LinkInfo.php')
-rw-r--r--src/phinde/LinkInfo.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/phinde/LinkInfo.php b/src/phinde/LinkInfo.php
new file mode 100644
index 0000000..4e3980c
--- /dev/null
+++ b/src/phinde/LinkInfo.php
@@ -0,0 +1,17 @@
+<?php
+namespace phinde;
+
+class LinkInfo
+{
+ public $url;
+ public $title;
+ public $source;
+
+ public function __construct($url, $title = null, $source = null)
+ {
+ $this->url = $url;
+ $this->title = $title;
+ $this->source = $source;
+ }
+}
+?>