oauth2-server-php-docs icon indicating copy to clipboard operation
oauth2-server-php-docs copied to clipboard

Cannot use object of type stdClass as array

Open iNDicat0r opened this issue 9 years ago • 0 comments
trafficstars

I get the following error in my slim3 app:

Cannot use object of type stdClass as array

Message: Cannot use object of type stdClass as array
File: /var/www/slimapi/vendor/bshaffer/oauth2-server-php/src/OAuth2/Controller/ResourceController.php
Line: 83

basically mongodb return data of type stdClass and the library tries to access the data in the array fashion and therefore it throws the error.

I am using the following options for the mongoDB/Client driver options: $driver_options['typeMap'] = ['array' => 'array', 'document' => 'array'];

Any idea what is wrong ?

iNDicat0r avatar Aug 04 '16 21:08 iNDicat0r