By quietone on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
11.1.x
Introduced in version:
11.1.0
Issue links:
Description:
Deprecate the string code path for values parameter in BlockContentTestBase::createBlockContentType with a string for the first parameter is deprecated. The first parameter, $values, must be an array.
Before
$this->createBlockContentType('test_block');
After
$this->createBlockContentType(['id' => 'test_block']);
Impacts:
Module developers