PHP 8.0으로 업그레이드한 후 코드를 실행할 때 다음과 같은 오류가 발생합니다:

Deprecated: Required parameter $config follows optional parameter $p in /… / on line 204″

여기 라인 #204 (public function ..)

public function _createSettingsImportSuccessNotice(ContainerInterface $c, $p = null, $config)
    {
        $notice = $this->_createNotice(array(
            'id'                => 'settings_import_success',
            'notice_type'       => NoticeInterface::TYPE_UPDATED,
            'condition'         => $this->_getCommandIsWprssPage($c),
            'content'           => $this->_autoParagraph(__('Your settings were imported successfully', 'wprss')),
            'dismiss_mode'      => NoticeInterface::DISMISS_MODE_FRONTEND,
        ), $c);
         return $notice;
    }

이전 버전의 PHP에서는 문제없이 작동했습니다. 해결책이 뭘까요

0