22 lines
356 B
PHP
22 lines
356 B
PHP
|
<?php
|
||
|
|
||
|
namespace itguild\forms\table\actionBtn;
|
||
|
|
||
|
abstract class ActionBtn
|
||
|
{
|
||
|
|
||
|
protected string $baseUrl;
|
||
|
protected string $prefix;
|
||
|
|
||
|
protected int $id;
|
||
|
public function __construct(string $baseUrl, int $id)
|
||
|
{
|
||
|
$this->baseUrl = $baseUrl;
|
||
|
$this->id = $id;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
abstract public function fetch();
|
||
|
|
||
|
}
|