news/opmlparser.php

15 строки
151 B
PHP

<?php
class OPMLParser {
public $raw;
public $data;
public function __construct($raw) {
$this->raw = $raw;
$this->data = array();
}
}