Files
cattr/app/Contracts/AppReport.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

18 lines
421 B
PHP

<?php
namespace App\Contracts;
abstract class AppReport
{
final public static function init(...$arguments): self
{
return new static(...$arguments);
}
abstract public function getReportId(): string;
abstract public function getLocalizedReportName(): string;
abstract public function store(string $filePath = null, string $disk = null, string $writerType = null, $diskOptions = []);
}