| Conditions | 3 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | 3 | public function selectBucket( ?string $bucketId ): Bucket { |
|
| 55 | 3 | foreach ( $this->buckets as $bucket ) { |
|
| 56 | 3 | if ( $bucket->getIdentifier() === $bucketId ) { |
|
| 57 | 3 | return $bucket; |
|
| 58 | } |
||
| 59 | } |
||
| 60 | 2 | return $this->buckets[$this->rng->getRandomInteger( 0, count( $this->buckets ) - 1 )]; |
|
| 61 | } |
||
| 66 | } |