PHP 8.4 fixes - Implicitly nullable parameter declarations deprecated

This commit is contained in:
Andy Miller
2024-10-25 20:12:25 +01:00
parent 1680968442
commit 841ec861bd
6 changed files with 13 additions and 13 deletions

View File

@@ -904,7 +904,7 @@ class Admin
* @return object
* @throws \RuntimeException
*/
public function getConfigurationData($type, array $post = null)
public function getConfigurationData($type, ?array $post = null)
{
static $data = [];