Skip to content

Commit e419e3f

Browse files
committed
Fix quoting style consistency.
1 parent 14094d6 commit e419e3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Annotation/Groups.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ class Groups
3535
public function __construct(array $data)
3636
{
3737
if (!isset($data['value']) || !$data['value']) {
38-
throw new InvalidArgumentException(sprintf("Parameter of annotation '%s' cannot be empty.", get_class($this)));
38+
throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" cannot be empty.', get_class($this)));
3939
}
4040

4141
if (!is_array($data['value'])) {
42-
throw new InvalidArgumentException(sprintf("Parameter of annotation '%s' must be an array of strings.", get_class($this)));
42+
throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be an array of strings.', get_class($this)));
4343
}
4444

4545
foreach ($data['value'] as $group) {
4646
if (!is_string($group)) {
47-
throw new InvalidArgumentException(sprintf("Parameter of annotation '%s' must be an array of strings.", get_class($this)));
47+
throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be an array of strings.', get_class($this)));
4848
}
4949
}
5050

0 commit comments

Comments
 (0)