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

28 lines
449 B
PHP

<?php
namespace App\Entity;
class Pad
{
protected $content;
protected $id;
public function getContent()
{
return $this->content;
}
public function setContent( string $content )
{
$this->content = $content;
return $this;
}
public function getId()
{
return $this->id;
}
public function setId( string $id )
{
$this->id = $id;
return $this;
}
}