You are here

public function ArrayObject::__construct in Express 8

Array object constructor.

Parameters

array $array: An array.

3 methods override ArrayObject::__construct()
Attributes::__construct in themes/contrib/bootstrap/src/Utility/Attributes.php
Array object constructor.
Element::__construct in themes/contrib/bootstrap/src/Utility/Element.php
Element constructor.
Variables::__construct in themes/contrib/bootstrap/src/Utility/Variables.php
Element constructor.

File

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

Class

ArrayObject
Custom ArrayObject implementation.

Namespace

Drupal\bootstrap\Utility

Code

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