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/Game.php

18 lines
378 B
PHP

<?php
class Game {
public $url;
public $title;
public $author;
public $description;
public $date;
public function print() {
$output = "* [«".trim($this->title)."»](".trim($this->url).") — ".trim($this->author);
if ($this->description) {
$output .= " \n".$this->description."\n";
} else {
$output .= "\n";
}
return $output;
}
}