Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.227.140.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
validator /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Constraints
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Context
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
DataCollector
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
DependencyInjection
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Exception
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Mapping
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Resources
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Test
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Util
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Validator
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
Violation
[ DIR ]
drwxrwxr-x
2022-07-20 13:00
CHANGELOG.md
17.09
KB
-rw-rw-r--
2022-07-20 13:00
Constraint.php
9.91
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintValidator.php
4.63
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintValidatorFactory.php
1.22
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintValidatorFactoryInterface.php
709
B
-rw-rw-r--
2022-07-20 13:00
ConstraintValidatorInterface.php
769
B
-rw-rw-r--
2022-07-20 13:00
ConstraintViolation.php
4.89
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintViolationInterface.php
4.07
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintViolationList.php
4.27
KB
-rw-rw-r--
2022-07-20 13:00
ConstraintViolationListInterface.php
1.63
KB
-rw-rw-r--
2022-07-20 13:00
ContainerConstraintValidatorFactory.php
1.95
KB
-rw-rw-r--
2022-07-20 13:00
GroupSequenceProviderInterface.php
655
B
-rw-rw-r--
2022-07-20 13:00
LICENSE
1.04
KB
-rw-rw-r--
2022-07-20 13:00
ObjectInitializerInterface.php
678
B
-rw-rw-r--
2022-07-20 13:00
README.md
579
B
-rw-rw-r--
2022-07-20 13:00
Validation.php
2.9
KB
-rw-rw-r--
2022-07-20 13:00
ValidatorBuilder.php
13.69
KB
-rw-rw-r--
2022-07-20 13:00
composer.json
2.91
KB
-rw-rw-r--
2022-07-20 13:00
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator; /** * Default implementation of {@ConstraintViolationInterface}. * * @author Bernhard Schussek <bschussek@gmail.com> */ class ConstraintViolation implements ConstraintViolationInterface { private $message; private $messageTemplate; private $parameters; private $plural; private $root; private $propertyPath; private $invalidValue; private $constraint; private $code; private $cause; /** * Creates a new constraint violation. * * @param string|\Stringable $message The violation message as a string or a stringable object * @param string|null $messageTemplate The raw violation message * @param array $parameters The parameters to substitute in the * raw violation message * @param mixed $root The value originally passed to the * validator * @param string|null $propertyPath The property path from the root * value to the invalid value * @param mixed $invalidValue The invalid value that caused this * violation * @param int|null $plural The number for determining the plural * form when translating the message * @param string|null $code The error code of the violation * @param Constraint|null $constraint The constraint whose validation * caused the violation * @param mixed $cause The cause of the violation */ public function __construct($message, ?string $messageTemplate, array $parameters, $root, ?string $propertyPath, $invalidValue, int $plural = null, string $code = null, Constraint $constraint = null, $cause = null) { if (!\is_string($message) && !(\is_object($message) && method_exists($message, '__toString'))) { throw new \TypeError('Constraint violation message should be a string or an object which implements the __toString() method.'); } $this->message = $message; $this->messageTemplate = $messageTemplate; $this->parameters = $parameters; $this->plural = $plural; $this->root = $root; $this->propertyPath = $propertyPath; $this->invalidValue = $invalidValue; $this->constraint = $constraint; $this->code = $code; $this->cause = $cause; } /** * Converts the violation into a string for debugging purposes. * * @return string */ public function __toString() { if (\is_object($this->root)) { $class = 'Object('.\get_class($this->root).')'; } elseif (\is_array($this->root)) { $class = 'Array'; } else { $class = (string) $this->root; } $propertyPath = (string) $this->propertyPath; if ('' !== $propertyPath && '[' !== $propertyPath[0] && '' !== $class) { $class .= '.'; } if (null !== ($code = $this->code) && '' !== $code) { $code = ' (code '.$code.')'; } return $class.$propertyPath.":\n ".$this->getMessage().$code; } /** * {@inheritdoc} */ public function getMessageTemplate() { return (string) $this->messageTemplate; } /** * {@inheritdoc} */ public function getParameters() { return $this->parameters; } /** * {@inheritdoc} */ public function getPlural() { return $this->plural; } /** * {@inheritdoc} */ public function getMessage() { return $this->message; } /** * {@inheritdoc} */ public function getRoot() { return $this->root; } /** * {@inheritdoc} */ public function getPropertyPath() { return (string) $this->propertyPath; } /** * {@inheritdoc} */ public function getInvalidValue() { return $this->invalidValue; } /** * Returns the constraint whose validation caused the violation. * * @return Constraint|null */ public function getConstraint() { return $this->constraint; } /** * Returns the cause of the violation. * * @return mixed */ public function getCause() { return $this->cause; } /** * {@inheritdoc} */ public function getCode() { return $this->code; } }