You are here

public function ArrayObject::append in Express 8

Appends the value.

Parameters

mixed $value: A value.

File

themes/contrib/bootstrap/src/Utility/ArrayObject.php, line 127
Contains \Drupal\bootstrap\Utility\ArrayObject.

Class

ArrayObject
Custom ArrayObject implementation.

Namespace

Drupal\bootstrap\Utility

Code

public function append($value) {
  $this->array[] = $value;
}