saintsystems / odata-client-php

OData Client Library for PHP
MIT License
141 stars 103 forks source link

remove 'mixed' type declarations #138

Closed n8rowley closed 1 year ago

n8rowley commented 1 year ago

Remove the mixed type from the offsetGet() function declaration. This maintains compatibility with PHP 7.4 because the mixed type isn't supported until PHP 8.0. PR #135 removed the mixed type declaration from function parameters, we just need to remove one more instance from the function return declaration.