for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\kw_table\core\Table;
use kalanis\kw_table\core\Table;
/**
* Class AOutput
* @package kalanis\kw_table\core\Table
* Render output into...
*/
abstract class AOutput
{
protected Table $table;
public function __construct(Table $table)
$this->table = $table;
}
abstract public function render(): string;