2021-10-02 20:41:14 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-10-02 20:41:14 +02:00
|
|
|
|
|
|
|
namespace App\Validator\Constraints\BigDecimal;
|
|
|
|
|
|
|
|
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
|
|
|
|
|
2022-08-14 19:32:53 +02:00
|
|
|
use function is_array;
|
|
|
|
|
2021-10-02 20:41:14 +02:00
|
|
|
trait BigNumberConstraintTrait
|
|
|
|
{
|
|
|
|
private function configureNumberConstraintOptions($options): array
|
|
|
|
{
|
|
|
|
if (null === $options) {
|
|
|
|
$options = [];
|
2022-08-14 19:32:53 +02:00
|
|
|
} elseif (!is_array($options)) {
|
2021-10-02 20:41:14 +02:00
|
|
|
$options = [$this->getDefaultOption() => $options];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['propertyPath'])) {
|
|
|
|
throw new ConstraintDefinitionException(sprintf('The "propertyPath" option of the "%s" constraint cannot be set.', static::class));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['value'])) {
|
|
|
|
throw new ConstraintDefinitionException(sprintf('The "value" option of the "%s" constraint cannot be set.', static::class));
|
|
|
|
}
|
|
|
|
|
|
|
|
$options['value'] = 0;
|
|
|
|
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
}
|