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

Breadcrumb

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

function LazyGhostTrait::resetLazyObject

Return value

bool Returns false when the object cannot be reset, ie when it's not a lazy object

File

vendor/symfony/var-exporter/LazyGhostTrait.php, line 108

Class

LazyGhostTrait

Namespace

Symfony\Component\VarExporter

Code

public function resetLazyObject() : bool {
    if (!($state = $this->lazyObjectState ?? null)) {
        return false;
    }
    if (LazyObjectState::STATUS_UNINITIALIZED_FULL !== $state->status) {
        $state->reset($this);
    }
    return true;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal