to composer

This commit is contained in:
2024-05-27 12:59:44 +03:00
parent 3f6e5ffcec
commit 42ab26a3db
19 changed files with 134 additions and 21 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace Itguild\Tables\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();
}