first table
This commit is contained in:
20
ActionColumn/ActionColumn.php
Normal file
20
ActionColumn/ActionColumn.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?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();
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user