| Total Complexity | 3 |
| Total Lines | 81 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class StartParameters implements IteratorAggregate { |
||
| 19 | /** |
||
| 20 | * Layoutcode |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $rtlo; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Description |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $description; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Amount |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $amount; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Country |
||
| 42 | * |
||
| 43 | * @var string |
||
| 44 | */ |
||
| 45 | public $country; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Language |
||
| 49 | * |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | public $language; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Return URL |
||
| 56 | * |
||
| 57 | * @var string |
||
| 58 | */ |
||
| 59 | public $return_url; |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Report URL |
||
| 63 | * |
||
| 64 | * @var string |
||
| 65 | */ |
||
| 66 | public $report_url; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * Constructs and initialize start parameters |
||
| 70 | */ |
||
| 71 | public function __construct() { |
||
| 72 | |||
| 73 | } |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Get array |
||
| 77 | * |
||
| 78 | * @rerturn array |
||
| 79 | */ |
||
| 80 | 1 | public function get_array() { |
|
| 89 | ); |
||
| 90 | } |
||
| 91 | |||
| 92 | /** |
||
| 93 | * Get iterator |
||
| 94 | * |
||
| 95 | * @return ArrayIterator |
||
| 96 | */ |
||
| 97 | public function getIterator() { |
||
| 99 | } |
||
| 100 | } |
||
| 101 |