15 lines
188 B
PHP
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;
|
|
} |