for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File copied from Waavi/Sanitizer https://github.com/waavi/sanitizer
* Sanitization functionality to be customized within this project before a 1.0 release.
*/
namespace PerfectOblivion\Valid\Sanitizer\Laravel;
use Illuminate\Support\Facades\Facade as LaravelFacade;
class Facade extends LaravelFacade
{
* Get the registered name of the component.
*
* @return string
protected static function getFacadeAccessor()
return 'sanitizer';
}