We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP Version: 8.0.9
is there any support for php 8.0?
As per the php 8.0 specification, the required parameter should come first and optional parameters should follow required parameters.
Can you guys please fix this?
The text was updated successfully, but these errors were encountered:
So, insted of
static function init($type='app', $params, $test=false) { self::validateTypeParams($type, $params); self::$authType = $type; self::$clientId = $params['client_id']; self::$clientSecret = $params['client_secret']; self::$username = isset($params['username']) ? $params['username'] : ''; self::$password = isset($params['password']) ? $params['password'] : ''; self::$baseUrl = Instamojo::PRODUCTION_BASE_URL; self::$scope = isset($params['scope']) ? $params['scope'] : null; ... ...
We can have this
static function init($params, $type='app', $test=false) { self::validateTypeParams($type, $params); self::$authType = $type; self::$clientId = $params['client_id']; self::$clientSecret = $params['client_secret']; self::$username = isset($params['username']) ? $params['username'] : ''; self::$password = isset($params['password']) ? $params['password'] : ''; self::$baseUrl = Instamojo::PRODUCTION_BASE_URL; self::$scope = isset($params['scope']) ? $params['scope'] : null;
.... ....
Sorry, something went wrong.
I see a bunch of other related errors in php 8 with this repository. Any plan to support already rolling php 8 version in the market?
No branches or pull requests
PHP Version: 8.0.9
is there any support for php 8.0?
As per the php 8.0 specification, the required parameter should come first and optional parameters should follow required parameters.
Can you guys please fix this?
The text was updated successfully, but these errors were encountered: