- Issue created by @steveoriol
- Open on Drupal.org →Core: 9.5.x + Environment: PHP 8.1 & MySQL 8last update
11 months ago Waiting for branch to pass - Status changed to RTBC
7 months ago 12:56am 25 June 2024
If you have Deprecated as :
Deprecated: Creation of dynamic property Drupal\adva\Plugin\search_api\processor\AdvancedAccess::$consumerManager is deprecated in /var/www/html/web/modules/contrib/adva/src/Plugin/search_api/processor/AdvancedAccess.php on line 129
You can easily remove it by adding this to the AdvancedAccess class (file: src/Plugin/search_api/processor/AdvancedAccess.php)
class AdvancedAccess extends ProcessorPluginBase {
...
/**
* The consumer Manager used by this plugin.
*
* @var \Drupal\Core\Session\AccessConsumerManagerInterface|null
*/
protected $consumerManager;
...
1.0
Code