fix to psr4
This commit is contained in:
20
src/ActionColumn/ActionColumn.php
Normal file
20
src/ActionColumn/ActionColumn.php
Normal 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();
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user