File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,16 +35,16 @@ class Groups
35
35
public function __construct (array $ data )
36
36
{
37
37
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 )));
39
39
}
40
40
41
41
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 )));
43
43
}
44
44
45
45
foreach ($ data ['value ' ] as $ group ) {
46
46
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 )));
48
48
}
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments