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