mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
git-subtree-dir: public/legacy git-subtree-split: 817a12dc0c30c189f56d5cb1f7dc37a9631bdbe3
11 lines
318 B
PHP
11 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__));
|