2022-08-23 17:48:09 +10:00

20 lines
278 B
PHP

<?php
namespace Slack\Blockkit\Blocks\Elements;
use Slack\Blockkit\Element;
final class Confirm extends Element
{
public function __construct()
{
parent::__construct();
abort(500,'Not Implememted');
}
public static function item(): self
{
return new self();
}
}