mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-24 08:36:48 +00:00
12 lines
318 B
PHP
12 lines
318 B
PHP
<?php
|
|
|
|
use Api\Core\Loader\CustomLoader;
|
|
|
|
include_once __DIR__ . '/../../../../vendor/symfony/validator/ValidatorBuilder.php';
|
|
|
|
return CustomLoader::mergeCustomArray([
|
|
'Validation' => function () {
|
|
return (new Symfony\Component\Validator\ValidatorBuilder())->getValidator();
|
|
},
|
|
], basename(__FILE__));
|