| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yatra\Core\Tour; |
| 4 |
|
| 5 |
use Yatra\Core\Abstracts\TourParent; |
| 6 |
|
| 7 |
class ExternalTour extends TourParent |
| 8 |
{ |
| 9 |
public function __construct($tour = 0) |
| 10 |
{ |
| 11 |
parent::__construct($tour); |
| 12 |
} |
| 13 |
|
| 14 |
public function get_external_url() |
| 15 |
{ |
| 16 |
return $this->get_prop('external_url'); |
| 17 |
|
| 18 |
} |
| 19 |
|
| 20 |
public function get_book_now_text() |
| 21 |
{ |
| 22 |
return $this->get_prop('book_now_text'); |
| 23 |
} |
| 24 |
|
| 25 |
|
| 26 |
} |