Completed
Push — feature/74 ( f551d9...cf090c )
by Marc
04:28 queued 46s
created
src/EnumSet.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -346,6 +346,7 @@  discard block
 block discarded – undo
346 346
     /**
347 347
      * Produce a new set with enumerators from both this and other (this | other)
348 348
      * @param EnumSet ...$others Other EnumSet(s) of the same enumeration to produce the union
349
+     * @param EnumSet[] $others
349 350
      * @return EnumSet
350 351
      */
351 352
     public function union(EnumSet ...$others)
@@ -370,6 +371,7 @@  discard block
 block discarded – undo
370 371
     /**
371 372
      * Produce a new set with enumerators common to both this and other (this & other)
372 373
      * @param EnumSet ...$others Other EnumSet(s) of the same enumeration to produce the union
374
+     * @param EnumSet[] $others
373 375
      * @return EnumSet
374 376
      */
375 377
     public function intersect(EnumSet ...$others)
@@ -394,6 +396,7 @@  discard block
 block discarded – undo
394 396
     /**
395 397
      * Produce a new set with enumerators in this but not in other (this - other)
396 398
      * @param EnumSet ...$others Other EnumSet(s) of the same enumeration to produce the union
399
+     * @param EnumSet[] $others
397 400
      * @return EnumSet
398 401
      */
399 402
     public function diff(EnumSet ...$others)
@@ -422,6 +425,7 @@  discard block
 block discarded – undo
422 425
     /**
423 426
      * Produce a new set with enumerators in either this and other but not in both (this ^ (other | other))
424 427
      * @param EnumSet ...$others Other EnumSet(s) of the same enumeration to produce the union
428
+     * @param EnumSet[] $others
425 429
      * @return EnumSet
426 430
      */
427 431
     public function symDiff(EnumSet ...$others)
Please login to merge, or discard this patch.