fix to psr4

This commit is contained in:
2024-07-15 16:25:03 +03:00
parent f9fc6b9f17
commit 4bdd883d67
8 changed files with 0 additions and 0 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();
}