Location::fromArray()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 1
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This phpFile is auto-generated.
5
 */
6
7
declare(strict_types=1);
8
9
namespace AurimasNiekis\TdLibSchema;
10
11
/**
12
 * Describes a location on planet Earth.
13
 */
14
class Location extends TdObject
15
{
16
    public const TYPE_NAME = 'location';
17
18
    /**
19
     * Latitude of the location in degrees; as defined by the sender.
20
     *
21
     * @var float
22
     */
23
    protected float $latitude;
24
25
    /**
26
     * Longitude of the location, in degrees; as defined by the sender.
27
     *
28
     * @var float
29
     */
30
    protected float $longitude;
31
32
    public function __construct(float $latitude, float $longitude)
33
    {
34
        $this->latitude  = $latitude;
35
        $this->longitude = $longitude;
36
    }
37
38
    public static function fromArray(array $array): Location
39
    {
40
        return new static(
41
            $array['latitude'],
42
            $array['longitude'],
43
        );
44
    }
45
46
    public function typeSerialize(): array
47
    {
48
        return [
49
            '@type'     => static::TYPE_NAME,
50
            'latitude'  => $this->latitude,
51
            'longitude' => $this->longitude,
52
        ];
53
    }
54
55
    public function getLatitude(): float
56
    {
57
        return $this->latitude;
58
    }
59
60
    public function getLongitude(): float
61
    {
62
        return $this->longitude;
63
    }
64
}
65