diff options
author | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-16 13:57:57 +0100 |
---|---|---|
committer | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-16 13:57:57 +0100 |
commit | a35e5f80fe0a33560045d43080042609ea5a6c30 (patch) | |
tree | 172395691c89ffe4ebcbe597676c95a04c55ab54 | |
parent | f8e58c51d752e656cb7bf34b29093892794caea4 (diff) | |
parent | e049712f84f6dee79a51692edab33d39cc44a669 (diff) | |
download | ip1-php-sdk-0.1.12-beta.zip ip1-php-sdk-0.1.12-beta.tar.gz ip1-php-sdk-0.1.12-beta.tar.bz2 |
Merge branch 'hotfix/0.1.12-beta'0.1.12-beta
-rw-r--r-- | phpunit.xml | 8 | ||||
-rw-r--r-- | src/Recipient/Group.php | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/phpunit.xml b/phpunit.xml index 2c49f33..51b431d 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -4,16 +4,16 @@ convertWarningsToExceptions="true"> <testsuites> <testsuite name="recipient"> - <directory>tests/recipient</directory> + <directory>tests/Recipient</directory> </testsuite> <testsuite name="sms"> - <directory>tests/sms</directory> + <directory>tests/SMS</directory> </testsuite> <testsuite name="general"> - <directory>tests/general</directory> + <directory>tests/General</directory> </testsuite> <testsuite name="core"> - <directory>tests/core</directory> + <directory>tests/Core</directory> </testsuite> </testsuites> </phpunit> 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 { |