1 <?php declare(strict_types=1);
12 public function purify(
string $html) : string
22 foreach ($htmlCollection as $key => $html) {
23 $html = $this->
purify($html);
24 $htmlCollection[$key] = $html;
27 return $htmlCollection;
Interface for html sanitizing functionality.