You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
377 B

<?php
class Answer
{
private int $id;
private string $content;
public function __construct(int $id, string $content)
{
$this->id = $id;
$this->content = $content;
}
public function getContent()
{
return $this->content;
}
public function setContent(string $content)
{
$this->content = $content;
}
}