@@ -33,7 +33,7 @@ |
||
| 33 | 33 | public int $file_size; |
| 34 | 34 | |
| 35 | 35 | |
| 36 | - public function __construct(stdClass|null $object = null) { |
|
| 36 | + public function __construct(stdClass | null $object = null) { |
|
| 37 | 37 | if ($object != null) { |
| 38 | 38 | parent::__construct($object, self::subs); |
| 39 | 39 | } |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | public bool $request_write_access; |
| 42 | 42 | |
| 43 | 43 | |
| 44 | - public function __construct(stdClass|null $object = null) { |
|
| 44 | + public function __construct(stdClass | null $object = null) { |
|
| 45 | 45 | if ($object != null) { |
| 46 | 46 | parent::__construct($object, self::subs); |
| 47 | 47 | } |
@@ -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 shippingAddress $shipping_address; |
| 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 | } |
@@ -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 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | public animation $animation; |
| 45 | 45 | |
| 46 | 46 | |
| 47 | - public function __construct(stdClass|null $object = null) { |
|
| 47 | + public function __construct(stdClass | null $object = null) { |
|
| 48 | 48 | if ($object != null) { |
| 49 | 49 | parent::__construct($object, self::subs); |
| 50 | 50 | } |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | public float $scale; |
| 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 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | public string $big_file_unique_id; |
| 37 | 37 | |
| 38 | 38 | |
| 39 | - public function __construct(stdClass|null $object = null) { |
|
| 39 | + public function __construct(stdClass | null $object = null) { |
|
| 40 | 40 | if ($object != null) { |
| 41 | 41 | parent::__construct($object, self::subs); |
| 42 | 42 | } |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public array $prices; |
| 28 | 28 | |
| 29 | 29 | |
| 30 | - public function __construct(stdClass|null $object = null) { |
|
| 30 | + public function __construct(stdClass | null $object = null) { |
|
| 31 | 31 | if ($object != null) { |
| 32 | 32 | parent::__construct($object, self::subs); |
| 33 | 33 | } |