Skip to content
Snippets Groups Projects
Unverified Commit 54c0501f authored by Joas Schilling's avatar Joas Schilling
Browse files

Type hints already make sure it is an array

parent 2c0b5dee
No related branches found
No related tags found
No related merge requests found
...@@ -239,12 +239,10 @@ class Notification implements INotification { ...@@ -239,12 +239,10 @@ class Notification implements INotification {
if (!is_string($subject) || $subject === '' || isset($subject[64])) { if (!is_string($subject) || $subject === '' || isset($subject[64])) {
throw new \InvalidArgumentException('The given subject is invalid'); throw new \InvalidArgumentException('The given subject is invalid');
} }
$this->subject = $subject;
if (!is_array($parameters)) { $this->subject = $subject;
throw new \InvalidArgumentException('The given subject parameters are invalid');
}
$this->subjectParameters = $parameters; $this->subjectParameters = $parameters;
return $this; return $this;
} }
...@@ -297,11 +295,8 @@ class Notification implements INotification { ...@@ -297,11 +295,8 @@ class Notification implements INotification {
if (!is_string($subject) || $subject === '') { if (!is_string($subject) || $subject === '') {
throw new \InvalidArgumentException('The given parsed subject is invalid'); throw new \InvalidArgumentException('The given parsed subject is invalid');
} }
$this->subjectRich = $subject;
if (!is_array($parameters)) { $this->subjectRich = $subject;
throw new \InvalidArgumentException('The given subject parameters are invalid');
}
$this->subjectRichParameters = $parameters; $this->subjectRichParameters = $parameters;
return $this; return $this;
...@@ -334,12 +329,10 @@ class Notification implements INotification { ...@@ -334,12 +329,10 @@ class Notification implements INotification {
if (!is_string($message) || $message === '' || isset($message[64])) { if (!is_string($message) || $message === '' || isset($message[64])) {
throw new \InvalidArgumentException('The given message is invalid'); throw new \InvalidArgumentException('The given message is invalid');
} }
$this->message = $message;
if (!is_array($parameters)) { $this->message = $message;
throw new \InvalidArgumentException('The given message parameters are invalid');
}
$this->messageParameters = $parameters; $this->messageParameters = $parameters;
return $this; return $this;
} }
...@@ -392,11 +385,8 @@ class Notification implements INotification { ...@@ -392,11 +385,8 @@ class Notification implements INotification {
if (!is_string($message) || $message === '') { if (!is_string($message) || $message === '') {
throw new \InvalidArgumentException('The given parsed message is invalid'); throw new \InvalidArgumentException('The given parsed message is invalid');
} }
$this->messageRich = $message;
if (!is_array($parameters)) { $this->messageRich = $message;
throw new \InvalidArgumentException('The given message parameters are invalid');
}
$this->messageRichParameters = $parameters; $this->messageRichParameters = $parameters;
return $this; return $this;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment