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 <?php
class Thread { class Thread {
private $id; public $id;
private $title; public $title;
private $boardID; public $boardID;
private $userID; public $userID;
private $content; public $content;
private $date_created; public $date_created;
private $replies = []; public $replies = [];
private $lastReplyDate; public $lastReplyDate;
private $owner; public $owner;
function Thread($id, $userID, $boardID, $title, $content, $date_created = null) { function Thread($id, $userID, $boardID, $title, $content, $date_created = null) {