| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function getOriginalPriceForChannel(string $channelName): string |
||
| 31 | { |
||
| 32 | /** @var NodeElement $priceForChannel */ |
||
| 33 | $channelPriceRow = $this->getDocument()->find('css', sprintf('#pricing tr:contains("%s")', $channelName)); |
||
| 34 | |||
| 35 | $priceForChannel = $channelPriceRow->find('css', 'td:nth-child(3)'); |
||
| 36 | |||
| 37 | return $priceForChannel->getText(); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |