관리-도구
편집 파일: Purify.php
<?php namespace Stevebauman\Purify\Facades; use Illuminate\Support\Facades\Facade; /** * @method static \HTMLPurifier getPurifier() * @method static array|string clean(array|string $input, array $config = null) * @method static \Stevebauman\Purify\Purify config(string|array $driver = null) */ class Purify extends Facade { /** * The facade accessor string. * * @return string */ protected static function getFacadeAccessor() { return 'purify'; } }