summaryrefslogtreecommitdiff
path: root/providers/Item.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-16 22:04:21 +0100
committeremkael <emkael@tlen.pl>2017-01-16 22:04:21 +0100
commitf7b2bfae9778af2c99e0c7fe7b2634e0f4f0973f (patch)
tree0258b0bd8b157a77a6135a30ee46a4d41975658f /providers/Item.php
parentbcc5a4c29ec9178d7515c8b29d186f31bac4065b (diff)
* mapping twitter items to universal objects
Diffstat (limited to 'providers/Item.php')
-rw-r--r--providers/Item.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/providers/Item.php b/providers/Item.php
new file mode 100644
index 0000000..cecbd26
--- /dev/null
+++ b/providers/Item.php
@@ -0,0 +1,16 @@
+<?php
+
+namespace Providers;
+
+class Item {
+
+ public $ID;
+ public $Title;
+ public $Link;
+ public $Time;
+ public $Text;
+ public $Author;
+
+}
+
+?>