Swader / diffbot-php-client

[Deprecated - Maintenance mode - use APIs directly please!] The official Diffbot client library
MIT License
53 stars 20 forks source link

PHP Parse error: syntax error, unexpected '.' in vendor/swader/diffbot-php-client/src/Entity/EntityIterator.php on line 87 #28

Closed ankushdharkar closed 8 years ago

ankushdharkar commented 8 years ago

PHP Parse error: syntax error, unexpected '.' in vendor/swader/diffbot-php-client/src/Entity/EntityIterator.php on line 87

$rv = $zeroth->$name(...$args);
Swader commented 8 years ago

As the README states, you need PHP 5.6 to use this library.

The error above is due to an outdated PHP version which does not support argument unpacking (...).

ankushdharkar commented 8 years ago

@Swader : Thanks.