Commit a56cbf52 authored by catch's avatar catch
Browse files

Issue #3325772 by andypost, mondrake: Fix wrong property typehinting in SchemaCheckTrait

parent 803264a2
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -17,17 +17,13 @@ trait SchemaCheckTrait {

  /**
   * The config schema wrapper object for the configuration object under test.
   *
   * @var \Drupal\Core\Config\Schema\Element
   */
  protected $schema;
  protected TraversableTypedDataInterface $schema;

  /**
   * The configuration object name under test.
   *
   * @var string
   */
  protected $configName;
  protected string $configName;

  /**
   * Checks the TypedConfigManager has a valid schema for the configuration.