Commit 6132b859 authored by Gaus Surahman's avatar Gaus Surahman Committed by Gaus Surahman
Browse files

Issue #3254692 by gausarts: Drupal 10, identify deprecation, etc

parent b31b8d7c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line

Blazy 8.x-2.0-dev, 2021-12-15
-----------------------------
- Issue #3254692 by gausarts: Drupal 10, identify deprecation, etc.
- Issue #3253012 by gausarts: Added Drupal ^10 to track potential disruption.
- Issue #3254668 by gausarts: Replace builtin once with core once.
- Issue #3101810 by gausarts, mittoD: Play nice with AMP.
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ class BlazyEntityTest extends BlazyKernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    $bundle = $this->bundle;
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ class BlazyFormatterTest extends BlazyKernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    $data['fields'] = [
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ abstract class BlazyKernelTestBase extends FieldKernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    $this->setUpVariables();
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ class BlazyManagerTest extends BlazyKernelTestBase {
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
  protected function setUp(): void {
    parent::setUp();

    $bundle = $this->bundle;
Loading