Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ObjectIterator.php

function ObjectIterator::initialize

Initializer

6 calls to ObjectIterator::initialize()
ObjectIterator::count in vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php
ObjectIterator::current in vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php
ObjectIterator::key in vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php
ObjectIterator::next in vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php
ObjectIterator::rewind in vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php

... See full list

File

vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php, line 100

Class

ObjectIterator
@package JsonSchema\Iterator

Namespace

JsonSchema\Iterator

Code

private function initialize() {
    if (!$this->initialized) {
        $this->data = $this->buildDataFromObject($this->object);
        $this->initialized = true;
    }
}
RSS feed
Powered by Drupal