| Total Complexity | 1 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Event |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $city; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $country; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | public $state; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Event constructor. |
||
| 31 | * @param string $city |
||
| 32 | * @param string $country |
||
| 33 | * @param string $state |
||
| 34 | */ |
||
| 35 | public function __construct($city, $country, $state) |
||
| 40 | } |
||
| 41 | } |