Files
monica/app/Helpers/StringHelper.php
T
2021-09-12 09:13:02 +02:00

18 lines
310 B
PHP

<?php
namespace App\Helpers;
class StringHelper
{
/**
* Test if string is null or whitespace.
*
* @param mixed $text
* @return bool
*/
public static function isNullOrWhitespace($text): bool
{
return ctype_space($text) || $text === '' || is_null($text);
}
}