super-powers/src/b3d2ec33-76d4-4c3b-bb2c-86a.../code.power

24 lines
392 B
Plaintext

/**
* Constructor.
*
* @param Table $table The Table Class.
*
* @since 3.2.1
*/
public function __construct(?Table $table = null)
{
$table ??= new Table;
parent::__construct($table);
}
/**
* Get the targeted component code
*
* @return string
* @since 3.2.1
*/
protected function getCode(): string
{
return '[[[component]]]';
}