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
File
-
vendor/
justinrainbow/ json-schema/ src/ JsonSchema/ Iterator/ ObjectIterator.php, line 100
Class
- ObjectIterator
- @package JsonSchema\Iterator
Namespace
JsonSchema\IteratorCode
private function initialize() {
if (!$this->initialized) {
$this->data = $this->buildDataFromObject($this->object);
$this->initialized = true;
}
}