diff options
-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 { |