Skip to content

Commit 029230f

Browse files
authored
Merge pull request #20 from medram/fix-bug
Urgent: Fixed bug: for php 7.3 & 7.4 support.
2 parents c2abc31 + 63c1489 commit 029230f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/HtmlPieces.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
*/
1111
class HtmlPieces
1212
{
13-
public ?string $filmId;
13+
public $filmId;
1414

15-
public function __construct(?string $filmId = null)
15+
public function __construct(string $filmId = null)
1616
{
1717
$this->filmId = $filmId;
1818
}

0 commit comments

Comments
 (0)