| Conditions | 3 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | 3 | public function selectBucket( ?string $bucketId ): Bucket { |
|
| 48 | 3 | foreach ( $this->buckets as $bucket ) { |
|
| 49 | 3 | if ( $bucket->getIdentifier() === $bucketId ) { |
|
| 50 | 3 | return $bucket; |
|
| 51 | } |
||
| 52 | } |
||
| 53 | 2 | return $this->buckets[$this->rng->getRandomInteger( 0, count( $this->buckets ) - 1 )]; |
|
| 54 | } |
||
| 59 | } |