fix to psr4
This commit is contained in:
22
src/ActionBtn/ActionBtn.php
Normal file
22
src/ActionBtn/ActionBtn.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Itguild\Tables\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();
|
||||
|
||||
}
|
Reference in New Issue
Block a user