first commit
This commit is contained in:
17
app/Contracts/AppReport.php
Normal file
17
app/Contracts/AppReport.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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 = []);
|
||||
}
|
||||
Reference in New Issue
Block a user