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