Commit db2e2d25 authored by catch's avatar catch
Browse files

Issue #3299853 by andypost, kim.pepper: Apply #[\AllowDynamicProperties]...

Issue #3299853 by andypost, kim.pepper: Apply #[\AllowDynamicProperties] attribute to base classes to make PHP 8.2 log size sane
parent 763577f8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@
 *
 * @ingroup entity_api
 */
#[\AllowDynamicProperties]
abstract class ConfigEntityBase extends EntityBase implements ConfigEntityInterface {

  use PluginDependencyTrait {
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
 *
 * @see https://bugs.php.net/bug.php?id=66052
 */
#[\AllowDynamicProperties]
class Extension {

  /**
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@
 *
 * @ingroup views_plugins
 */
#[\AllowDynamicProperties]
abstract class PluginBase extends ComponentPluginBase implements ContainerFactoryPluginInterface, ViewsPluginInterface, DependentPluginInterface, TrustedCallbackInterface {

  /**
+1 −0
Original line number Diff line number Diff line
@@ -150,6 +150,7 @@
 *
 * Extensions of this class can be used to create more interesting joins.
 */
#[\AllowDynamicProperties]
class JoinPluginBase extends PluginBase implements JoinPluginInterface {

  /**
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
/**
 * A class representing a view result row.
 */
#[\AllowDynamicProperties]
class ResultRow {

  /**