Skip to content

Commit 8a7b855

Browse files
authored
Added possible InvalidArgumentException in phpdoc of EnumSet::setBinaryBitsetLe()
1 parent 0d6b75c commit 8a7b855

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/EnumSet.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ private function doGetBinaryBitsetLeInt()
597597
* @param string $bitset
598598
* @return void
599599
* @throws InvalidArgumentException On a non string is given as Parameter
600+
* @throws InvalidArgumentException On Out-Of-Range bits given as input bitset
600601
*/
601602
public function setBinaryBitsetLe($bitset)
602603
{
@@ -617,7 +618,7 @@ public function setBinaryBitsetLe($bitset)
617618
*
618619
* @param string $bitset
619620
* @return void
620-
* @throws InvalidArgumentException On a non string is given as Parameter
621+
* @throws InvalidArgumentException On Out-Of-Range bits given as input bitset
621622
*/
622623
private function doSetBinaryBitsetLeBin($bitset)
623624
{
@@ -656,7 +657,7 @@ private function doSetBinaryBitsetLeBin($bitset)
656657
*
657658
* @param string $bitset
658659
* @return void
659-
* @throws InvalidArgumentException On a non string is given as Parameter
660+
* @throws InvalidArgumentException On Out-Of-Range bits given as input bitset
660661
*/
661662
private function doSetBinaryBitsetLeInt($bitset)
662663
{

0 commit comments

Comments
 (0)