hmerritt / php-imdb-api

PHP IMDB-API that can fetch film data and search results
Apache License 2.0
59 stars 22 forks source link

Urgent: Fixed bug: for php 7.3 & 7.4 support. #20

Closed medram closed 1 year ago

medram commented 1 year ago

I'm using this awesome php package but recently, the latest update broke php back word compatibility for 7.3 & 7.4

I've fixed it, and now it's working as intended :D

The change/fix is small:

class HtmlPieces
{
+    public $filmId;
-    public ?string $filmId;

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

Please accept my PR and upgrade the package version.

Thanks in advance :D

hmerritt commented 1 year ago

Looks good, thanks for the fix :)

This is included in the v1.2.10 release.

medram commented 1 year ago

Thanks :D