portal.mkgtu.ru/common/components/SupportInfo/ICanPrintSupportInfo.php

12 lines
241 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\SupportInfo;
interface ICanPrintSupportInfo
{
public function print(array $params = []): void;
public function render(array $params = []): string;
public function showDeveloperInfo(): bool;
}