@@ -245,7 +245,7 @@ public function union(EnumSet $other)
245
245
foreach (func_get_args () as $ other ) {
246
246
if (!$ other instanceof self || $ this ->enumeration !== $ other ->enumeration ) {
247
247
throw new InvalidArgumentException (sprintf (
248
- " Others should be an instance of %s of the same enumeration as this %s " ,
248
+ ' Others should be an instance of %s of the same enumeration as this %s ' ,
249
249
__CLASS__ ,
250
250
$ this ->enumeration
251
251
));
@@ -270,7 +270,7 @@ public function intersect(EnumSet $other)
270
270
foreach (func_get_args () as $ other ) {
271
271
if (!$ other instanceof self || $ this ->enumeration !== $ other ->enumeration ) {
272
272
throw new InvalidArgumentException (sprintf (
273
- " Others should be an instance of %s of the same enumeration as this %s " ,
273
+ ' Others should be an instance of %s of the same enumeration as this %s ' ,
274
274
__CLASS__ ,
275
275
$ this ->enumeration
276
276
));
@@ -295,7 +295,7 @@ public function diff(EnumSet $other)
295
295
foreach (func_get_args () as $ other ) {
296
296
if (!$ other instanceof self || $ this ->enumeration !== $ other ->enumeration ) {
297
297
throw new InvalidArgumentException (sprintf (
298
- " Others should be an instance of %s of the same enumeration as this %s " ,
298
+ ' Others should be an instance of %s of the same enumeration as this %s ' ,
299
299
__CLASS__ ,
300
300
$ this ->enumeration
301
301
));
@@ -320,7 +320,7 @@ public function symDiff(EnumSet $other)
320
320
foreach (func_get_args () as $ other ) {
321
321
if (!$ other instanceof self || $ this ->enumeration !== $ other ->enumeration ) {
322
322
throw new InvalidArgumentException (sprintf (
323
- " Others should be an instance of %s of the same enumeration as this %s " ,
323
+ ' Others should be an instance of %s of the same enumeration as this %s ' ,
324
324
__CLASS__ ,
325
325
$ this ->enumeration
326
326
));
0 commit comments