demo/app/Modules/Application/helpers.php
2023-03-23 18:50:47 +01:00

15 lines
241 B
PHP

<?php
use LaraBB\Application\Button;
if(!function_exists('button')) {
/**
* @param string $strText
* @return Button
*/
function button(string $strText = ''): Button
{
return new Button($strText);
}
}