Files
StocksNew/vendor/spatie/laravel-html/src/Exceptions/InvalidChild.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

15 lines
306 B
PHP

<?php
namespace Spatie\Html\Exceptions;
use Exception;
use Spatie\Html\HtmlElement;
class InvalidChild extends Exception
{
public static function childMustBeAnHtmlElementOrAString()
{
return new static('The given child should implement `'.HtmlElement::class.'` or be a string');
}
}