Page MenuHomeDevCentral

Output.php
No OneTemporary

Output.php

<?php
namespace Keruald\Reporting\Output;
use Keruald\Reporting\Report;
abstract class Output {
///
/// Properties
///
protected Report $report;
///
/// Abstract methods to implement
///
public abstract function render () : string;
///
/// Constructors
///
public static function for (Report $report) : Output {
$output = new static();
$output->report = $report;
return $output;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 13, 17:00 (5 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2566429
Default Alt Text
Output.php (469 B)

Event Timeline