Loading core/lib/Drupal/Component/Plugin/PluginManagerBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ protected function handlePluginNotFound($plugin_id, array $configuration) { * If the method is not implemented in the concrete plugin manager class. */ protected function getFallbackPluginId($plugin_id, array $configuration = []) { throw new \BadMethodCallException(get_class() . '::getFallbackPluginId() not implemented.'); throw new \BadMethodCallException(static::class . '::getFallbackPluginId() not implemented.'); } /** Loading core/tests/Drupal/Tests/Component/Utility/HtmlTest.php +1 −1 Original line number Diff line number Diff line Loading @@ -27,7 +27,7 @@ protected function setUp(): void { parent::setUp(); $property = new \ReflectionProperty('Drupal\Component\Utility\Html', 'seenIdsInit'); $property->setValue(NULL); $property->setValue(NULL, NULL); } /** Loading Loading
core/lib/Drupal/Component/Plugin/PluginManagerBase.php +1 −1 Original line number Diff line number Diff line Loading @@ -125,7 +125,7 @@ protected function handlePluginNotFound($plugin_id, array $configuration) { * If the method is not implemented in the concrete plugin manager class. */ protected function getFallbackPluginId($plugin_id, array $configuration = []) { throw new \BadMethodCallException(get_class() . '::getFallbackPluginId() not implemented.'); throw new \BadMethodCallException(static::class . '::getFallbackPluginId() not implemented.'); } /** Loading
core/tests/Drupal/Tests/Component/Utility/HtmlTest.php +1 −1 Original line number Diff line number Diff line Loading @@ -27,7 +27,7 @@ protected function setUp(): void { parent::setUp(); $property = new \ReflectionProperty('Drupal\Component\Utility\Html', 'seenIdsInit'); $property->setValue(NULL); $property->setValue(NULL, NULL); } /** Loading