| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 1 | public function build() |
|
| 41 | { |
||
| 42 | 1 | $this->stream->open(); |
|
| 43 | |||
| 44 | 1 | foreach ($this->builders as $builder) { |
|
| 45 | 1 | foreach ($builder as $url) { |
|
| 46 | 1 | $this->stream->push($url); |
|
| 47 | } |
||
| 48 | } |
||
| 49 | |||
| 50 | 1 | $total_urls = count($this->stream); |
|
| 51 | 1 | $this->stream->close(); |
|
| 52 | |||
| 53 | 1 | return $total_urls; |
|
| 54 | } |
||
| 55 | } |
||
| 56 |