reliqarts/laravel-common

View on GitHub
src/Contract/HtmlHelper.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace ReliqArts\Contract;

interface HtmlHelper
{
    /**
     * Strip tags elegantly; leaving adequately spaced words.
     */
    public function stripTags(string $html, ?string $allowedTags = null): string;
}