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/Interfaces/PrinterElementInterface.php
2019-03-01 07:58:22 +01:00

15 lines
188 B
PHP

<?php
/**
* Created by PhpStorm.
* User: k
* Date: 27.02.2019
* Time: 23:41
*/
namespace App\Interfaces;
interface PrinterElementInterface
{
public function render(): string;
}