diff options
author | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-16 13:57:03 +0100 |
---|---|---|
committer | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-16 13:57:03 +0100 |
commit | e049712f84f6dee79a51692edab33d39cc44a669 (patch) | |
tree | 172395691c89ffe4ebcbe597676c95a04c55ab54 /src | |
parent | f8e58c51d752e656cb7bf34b29093892794caea4 (diff) | |
download | ip1-php-sdk-e049712f84f6dee79a51692edab33d39cc44a669.zip ip1-php-sdk-e049712f84f6dee79a51692edab33d39cc44a669.tar.gz ip1-php-sdk-e049712f84f6dee79a51692edab33d39cc44a669.tar.bz2 |
Fix PHPUnit config suite and exceptions
Signed-off-by: Hannes Kindströmmer <hannes@kindstrommer.se>
Diffstat (limited to 'src')
-rw-r--r-- | src/Recipient/Group.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Recipient/Group.php b/src/Recipient/Group.php index 133976e..0a5de89 100644 --- a/src/Recipient/Group.php +++ b/src/Recipient/Group.php @@ -64,7 +64,7 @@ class Group implements ProcessableComponentInterface /** * Sets the Group's name to the given string. * @param string $name Name that the Group should have. - * @throws InvalidArgumentException When $name is empty. + * @throws \InvalidArgumentException When $name is empty. * @return void */ public function setName(string $name):void @@ -79,7 +79,7 @@ class Group implements ProcessableComponentInterface * @param string $color A hexadecimal color code. * @example #5E5E5E * @return void - * @throws InvalidArgumentException When $color isn't a valid hexadecimal color. + * @throws \InvalidArgumentException When $color isn't a valid hexadecimal color. */ public function setColor(string $color): void { |