10 lines
131 B
PHP
10 lines
131 B
PHP
|
<?php
|
||
|
|
||
|
if ( ! function_exists('testHelperFunction'))
|
||
|
{
|
||
|
|
||
|
function testHelperFunction($someParameter)
|
||
|
{
|
||
|
return 'SomeResult';
|
||
|
}
|
||
|
}
|