converted private members to public members

This commit is contained in:
Andreas 2019-09-24 14:45:04 +02:00
parent 8d27f0db8a
commit f84f283e8e

View File

@ -1,15 +1,15 @@
<?php
class Thread {
private $id;
private $title;
private $boardID;
private $userID;
private $content;
private $date_created;
private $replies = [];
private $lastReplyDate;
private $owner;
public $id;
public $title;
public $boardID;
public $userID;
public $content;
public $date_created;
public $replies = [];
public $lastReplyDate;
public $owner;
function Thread($id, $userID, $boardID, $title, $content, $date_created = null) {