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