Skip to content

Commit 34071a1

Browse files
committed
Do not use typed property syntax (it's available only from PHP 7.4)
1 parent 34acb88 commit 34071a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Objects/Update.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
*/
3434
class Update extends BaseObject
3535
{
36-
protected ?string $updateType = null;
36+
/** @var string|null Cached type of thr Update () */
37+
protected $updateType = null;
3738

3839
/**
3940
* {@inheritdoc}

0 commit comments

Comments
 (0)