mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[Item] Remove file
This commit is contained in:
parent
bf0a9d754e
commit
7b890da8f2
20
lib/Item.php
20
lib/Item.php
@ -1,20 +0,0 @@
|
||||
<?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{
|
||||
|
||||
// FIXME : use the arrayInterface instead
|
||||
public $enclosures = array();
|
||||
|
||||
public function __set($name, $value){
|
||||
$this->$name = $value;
|
||||
}
|
||||
|
||||
public function __get($name){
|
||||
return (isset($this->$name) ? $this->$name : null);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user