simplePad2/src/Entity/Pad.php

28 lines
449 B
PHP
Raw Normal View History

2019-12-11 15:14:56 +01:00
<?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;
}
}