You are here

private function Snapshot::snapshotConstants in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/sebastian/global-state/src/Snapshot.php \SebastianBergmann\GlobalState\Snapshot::snapshotConstants()

Creates a snapshot user-defined constants.

1 call to Snapshot::snapshotConstants()
Snapshot::__construct in vendor/sebastian/global-state/src/Snapshot.php
Creates a snapshot of the current global state.

File

vendor/sebastian/global-state/src/Snapshot.php, line 279

Class

Snapshot
A snapshot of global state.

Namespace

SebastianBergmann\GlobalState

Code

private function snapshotConstants() {
  $constants = get_defined_constants(true);
  if (isset($constants['user'])) {
    $this->constants = $constants['user'];
  }
}