tables/ActionColumn/ActionColumn.php
2024-05-27 12:11:56 +03:00

20 lines
339 B
PHP

<?php
namespace itguild\forms\table\ActionColumn;
abstract class ActionColumn
{
protected string $baseUrl;
protected string $prefix;
protected int $id;
public function __construct(string $baseUrl, int $id)
{
$this->baseUrl = $baseUrl;
$this->id = $id;
}
abstract public function fetch();
}