This commit is contained in:
kali
2024-04-05 18:47:38 +03:00
parent 38ec704a03
commit 569c9348ba
10 changed files with 130 additions and 43 deletions

View File

@ -0,0 +1,19 @@
<?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();
}