1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-02-06 08:09:52 +01:00
php-rss-bridge/lib/Item.php
2013-08-11 13:30:41 +02:00

16 lines
375 B
PHP

<?php
interface ItemInterface{}
/**
* Object to store datas collect informations
* FIXME : not sur this logic is the good, I think recast all is necessary
*/
class Item implements ItemInterface{
public function __set($name, $value){
$this->$name = $value;
}
public function __get($name){
return isset($this->$name) ? $this->$name : null;
}
}