Habari\Stack::__construct PHP Method

__construct() private method

Stack objects should only be created using the static method Static::create_stack(), or one of the methods that adds a value directly to a stack. This prevents multiple Stack objects from being created with the same name.
private __construct ( mixed $input ) : array
$input mixed An array or ArrayObject to create the stack from.
return array The created stack
    private function __construct($input)
    {
        parent::__construct($input);
    }