Files
steamwidgets-web/app/helper/TestHelper.php
Daniel Brendel 94353ac3c8 Initial commit
2022-08-16 13:54:30 +02:00

16 lines
202 B
PHP

<?php
/*
Asatru PHP - example helper
*/
/**
* Just an example helper function
*
* @param int $max
* @return int
*/
function MyExampleHelperFunction($max = 1000)
{
return rand(1, $max);
}