for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mews\Purifier\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @method static mixed clean($dirty, $config = null, \Closure $postCreateConfigHook = null)
* @see \Mews\Purifier
*/
class Purifier extends Facade
{
protected static function getFacadeAccessor()
return 'purifier';
}