20 lines
339 B
PHP
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();
|
|
|
|
|
|
} |