This repository has been archived on 2019-03-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
paper-pi/app/Paper/PrinterElements/TitlePrinterElement.php
2019-03-01 07:58:22 +01:00

27 lines
416 B
PHP

<?php
/**
* Created by PhpStorm.
* User: k
* Date: 27.02.2019
* Time: 23:45
*/
namespace App\Paper\PrinterElements;
use App\Interfaces\PrinterElementInterface;
class TitlePrinterElement implements PrinterElementInterface
{
private $title;
public function __construct($title)
{
$this->title = $title;
}
public function render(): string
{
return $this->title;
}
}