Commit 6ce3d21e authored by Thomas Seidl's avatar Thomas Seidl
Browse files

Issue #3355677 by drunken monkey: Fixed incompatibility with PHP 7.3 in ConfigurablePropertyBase.

parent 9456f5e2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
Search API 1.x, dev (xxxx-xx-xx):
---------------------------------
- #3355677 by drunken monkey: Fixed incompatibility with PHP 7.3 in
  ConfigurablePropertyBase.
- #3358819 by drunken monkey: Fixed tests against Drupal 10.1.
- #3356817 by Eduardo Morales Alberti, drunken monkey: Adapted phrasing of
  warning in SearchApiFulltext to that of Core.
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ abstract class ConfigurablePropertyBase extends ProcessorProperty implements Con
  /**
   * {@inheritdoc}
   */
  public function setConfiguration(?array $configuration): self {
  public function setConfiguration(?array $configuration): ConfigurablePropertyInterface {
    $this->configuration = $configuration;
    return $this;
  }