function ConfigTest::addToArray

Adds a value to the array property.

Parameters

mixed $value: The value to add.

Return value

$this The config entity.

File

core/modules/config/tests/config_test/src/Entity/ConfigTest.php, line 296

Class

ConfigTest
Defines the ConfigTest configuration entity.

Namespace

Drupal\config_test\Entity

Code

public function addToArray(mixed $value) : static {
    $this->array_property[] = $value;
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.