Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/Source/Dashingdon.php

17 lines
330 B
PHP

<?php
namespace Source;
use \Game;
/**
* And here's the problem: there are no publication dates.
*/
class Dashingdon extends Source {
public $title = "DashingDon";
protected function parse() {
$text = $this->get_text("https://dashingdon.com/screenreader/");
$this->dom->loadStr($text, []);
unset($text);
}
}