instagram icon indicating copy to clipboard operation
instagram copied to clipboard

PHP 8 deprecations in Repositories

Open rk-mxp opened this issue 2 years ago • 0 comments

The Repositories use the deprecated fetch and fetchColumn functions of doctine.
These throw PHP 8 deprecations because they don't set fetchMode which is defined as int in https://www.php.net/manual/de/class.pdostatement.php

Solution: Replace fetchColumn with fetchOne and fetch with fetchNumeric(), fetchAssociative() or fetchOne() (whatever is required).

rk-mxp avatar May 26 '23 07:05 rk-mxp