influxdata / influxdb-client-php

InfluxDB (v2+) Client Library for PHP
https://influxdata.github.io/influxdb-client-php/
MIT License
150 stars 47 forks source link

fix: PHP 8.1 deprecation warning #109

Closed bednar closed 2 years ago

bednar commented 2 years ago

Closes #108

Proposed Changes

Fixed deprecation warning ArrayAccess.

The public function offsetGet($offset) cannot be changed to public offsetGet(mixed $offset): mixed because the mixed is supported as type from PHP 8.0.

Checklist