Closed ZigmaZigmax closed 6 years ago
PHP 7 throws error for the code $user = new object(); it should be changed to $user = new stdClass(); as per the recommendation here http://php.net/manual/en/reserved.classes.php
$user = new object();
$user = new stdClass();
This has been applied to all dev release branches/versions. Thanks! and keep the PR's coming!
PHP 7 throws error for the code
$user = new object();
it should be changed to$user = new stdClass();
as per the recommendation here http://php.net/manual/en/reserved.classes.php