summaryrefslogtreecommitdiff
path: root/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php')
-rw-r--r--vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php17
1 files changed, 3 insertions, 14 deletions
diff --git a/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php b/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
index acd966544..20c890992 100644
--- a/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
+++ b/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
@@ -16,22 +16,11 @@ namespace Assert;
class InvalidArgumentException extends \InvalidArgumentException implements AssertionFailedException
{
- /**
- * @var string|null
- */
private $propertyPath;
-
- /**
- * @var mixed
- */
private $value;
-
- /**
- * @var array
- */
private $constraints;
- public function __construct($message, $code, string $propertyPath = null, $value = null, array $constraints = [])
+ public function __construct($message, $code, $propertyPath, $value, array $constraints = [])
{
parent::__construct($message, $code);
@@ -47,7 +36,7 @@ class InvalidArgumentException extends \InvalidArgumentException implements Asse
* Useful to transport information about the nature of the error
* back to higher layers.
*
- * @return string|null
+ * @return string
*/
public function getPropertyPath()
{
@@ -69,7 +58,7 @@ class InvalidArgumentException extends \InvalidArgumentException implements Asse
*
* @return array
*/
- public function getConstraints(): array
+ public function getConstraints()
{
return $this->constraints;
}