@@ -31,7 +31,7 @@ |
||
31 | 31 | public chatInviteLink $invite_link; |
32 | 32 | |
33 | 33 | |
34 | - public function __construct(stdClass|null $object = null) { |
|
34 | + public function __construct(stdClass | null $object = null) { |
|
35 | 35 | if ($object != null) { |
36 | 36 | parent::__construct($object, self::subs); |
37 | 37 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | public encryptedCredentials $credentials; |
25 | 25 | |
26 | 26 | |
27 | - public function __construct(stdClass|null $object = null) { |
|
27 | + public function __construct(stdClass | null $object = null) { |
|
28 | 28 | if ($object != null) { |
29 | 29 | parent::__construct($object, self::subs); |
30 | 30 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public string $description; |
19 | 19 | |
20 | 20 | |
21 | - public function __construct(stdClass|null $object = null) { |
|
21 | + public function __construct(stdClass | null $object = null) { |
|
22 | 22 | if ($object != null) { |
23 | 23 | parent::__construct($object, self::subs); |
24 | 24 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | public string $type; |
16 | 16 | |
17 | 17 | |
18 | - public function __construct(stdClass|null $object = null) { |
|
18 | + public function __construct(stdClass | null $object = null) { |
|
19 | 19 | if ($object != null) { |
20 | 20 | parent::__construct($object, self::subs); |
21 | 21 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public string $inline_message_id; |
19 | 19 | |
20 | 20 | |
21 | - public function __construct(stdClass|null $object = null) { |
|
21 | + public function __construct(stdClass | null $object = null) { |
|
22 | 22 | if ($object != null) { |
23 | 23 | parent::__construct($object, self::subs); |
24 | 24 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | public string $provider_payment_charge_id; |
38 | 38 | |
39 | 39 | |
40 | - public function __construct(stdClass|null $object = null) { |
|
40 | + public function __construct(stdClass | null $object = null) { |
|
41 | 41 | if ($object != null) { |
42 | 42 | parent::__construct($object, self::subs); |
43 | 43 | } |
@@ -314,7 +314,7 @@ |
||
314 | 314 | public string $audio_file_id; |
315 | 315 | |
316 | 316 | |
317 | - public function __construct(stdClass|null $object = null) { |
|
317 | + public function __construct(stdClass | null $object = null) { |
|
318 | 318 | if ($object != null) { |
319 | 319 | parent::__construct($object, self::subs); |
320 | 320 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | public string $address; |
19 | 19 | |
20 | 20 | |
21 | - public function __construct(stdClass|null $object = null) { |
|
21 | + public function __construct(stdClass | null $object = null) { |
|
22 | 22 | if ($object != null) { |
23 | 23 | parent::__construct($object, self::subs); |
24 | 24 | } |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | $this->$key[$sub_key][] = new ($subs['array']['array'][$key]) ($sub2_value); |
27 | 27 | } |
28 | 28 | } |
29 | - else{ |
|
29 | + else { |
|
30 | 30 | $this->$key[] = new ($subs['array'][$key]) ($sub_value); |
31 | 31 | } |
32 | 32 | } |
33 | 33 | } |
34 | - else{ |
|
34 | + else { |
|
35 | 35 | $this->$key = $value; |
36 | 36 | if (ucfirst($key) === basename(get_class($this)).'_id') { |
37 | 37 | $this->{'id'} = $value; |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | public function __call(string $name, array $arguments) { |
46 | 46 | $name = strtolower($name); |
47 | 47 | if (str_starts_with($name, 'set')) { |
48 | - $name = substr($name,3); |
|
48 | + $name = substr($name, 3); |
|
49 | 49 | if (isset($arguments[0])) { |
50 | 50 | $this->$name = $arguments[0]; |
51 | 51 | } |
@@ -17,21 +17,18 @@ discard block |
||
17 | 17 | foreach ($object as $key=>$value) { |
18 | 18 | if (isset($subs[$key])) { |
19 | 19 | $this->$key = new ($subs[$key]) ($value); |
20 | - } |
|
21 | - else { |
|
20 | + } else { |
|
22 | 21 | if (is_array($value)) { |
23 | 22 | foreach ($value as $sub_key=>$sub_value) { |
24 | 23 | if (is_array($sub_value)) { |
25 | 24 | foreach ($sub_value as $sub2_value) { |
26 | 25 | $this->$key[$sub_key][] = new ($subs['array']['array'][$key]) ($sub2_value); |
27 | 26 | } |
28 | - } |
|
29 | - else{ |
|
27 | + } else{ |
|
30 | 28 | $this->$key[] = new ($subs['array'][$key]) ($sub_value); |
31 | 29 | } |
32 | 30 | } |
33 | - } |
|
34 | - else{ |
|
31 | + } else{ |
|
35 | 32 | $this->$key = $value; |
36 | 33 | if (ucfirst($key) === basename(get_class($this)).'_id') { |
37 | 34 | $this->{'id'} = $value; |
@@ -48,8 +45,7 @@ discard block |
||
48 | 45 | $name = substr($name,3); |
49 | 46 | if (isset($arguments[0])) { |
50 | 47 | $this->$name = $arguments[0]; |
51 | - } |
|
52 | - elseif (isset($arguments['value'])) { |
|
48 | + } elseif (isset($arguments['value'])) { |
|
53 | 49 | $this->$name = $arguments['value']; |
54 | 50 | } |
55 | 51 | } |