in2code-de / instagram

Show instagram feed without API in a TYPO3 extension
https://www.in2code.de/agentur/typo3-extensions/instagram/
19 stars 13 forks source link

PHP 8 deprecations in Repositories #33

Open rk-mxp opened 1 year ago

rk-mxp commented 1 year ago

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).