summaryrefslogtreecommitdiff
path: root/vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
committerAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
commit4c37fa4b41b0cab50a4fc192e9120042dbe36872 (patch)
treed7ca7cbd65de0cea9806870c8fb646ed15d978ae /vendor/beberlei/assert/lib/Assert/InvalidArgumentException.php
parent109b702ed0cd31a0dc8466b8127882d263705d8d (diff)
update phpstan to 1.1.2; update php-qrcode to 3.4.1
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;
}