2020-07-15 05:48:49 +00:00
|
|
|
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
|
|
|
class ContextAwareValidation extends Facade
|
|
|
|
{
|
2020-10-21 00:29:50 +00:00
|
|
|
|
|
|
|
protected static function getFacadeAccessor()
|
|
|
|
{
|
|
|
|
return 'contextAwareValidator';
|
|
|
|
}
|
|
|
|
|
2020-07-15 05:48:49 +00:00
|
|
|
}
|