| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function getPriceForChannel(string $channelName): string |
||
| 21 | { |
||
| 22 | /** @var NodeElement $priceForChannel */ |
||
| 23 | $channelPriceRow = $this->getDocument()->find('css', sprintf('#pricing tr:contains("%s")', $channelName)); |
||
| 24 | |||
| 25 | $priceForChannel = $channelPriceRow->find('css', 'td:nth-child(2)'); |
||
| 26 | |||
| 27 | return $priceForChannel->getText(); |
||
| 28 | } |
||
| 29 | |||
| 40 |