facebook / facebook-php-business-sdk

PHP SDK for Meta Marketing API
https://developers.facebook.com/docs/business-sdk
Other
816 stars 513 forks source link

Union types are only allowed since php8 #576

Closed chengshanmu closed 1 year ago

chengshanmu commented 1 year ago

syntax error, unexpected '|', expecting ';' or '{', \vendor\facebook\php-business-sdk\src\FacebookAds\Cursor.php,438

public function current() : AbstractObject|bool {

natewiebe13 commented 1 year ago

See: https://github.com/facebook/facebook-php-business-sdk/pull/572#issuecomment-1423208117

Since then, composer.json has been updated with php >=8 as a version constraint, so this is correct.

chengshanmu commented 1 year ago

thanks