summaryrefslogtreecommitdiffstats
path: root/opmlparser.php
blob: ab0c8beb0d1aed7ea031a79534235f2f761b99e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php 

class OPMLParser {

	public $raw;
	public $data;

	public function __construct($raw) {
		$this->raw = $raw;
		$this->data = array();
	}
	
	
	
}