private function Snapshot::snapshotFunctions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/sebastian/global-state/src/Snapshot.php \SebastianBergmann\GlobalState\Snapshot::snapshotFunctions()
Creates a snapshot user-defined functions.
1 call to Snapshot::snapshotFunctions()
- 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 291
Class
- Snapshot
- A snapshot of global state.
Namespace
SebastianBergmann\GlobalStateCode
private function snapshotFunctions() {
$functions = get_defined_functions();
$this->functions = $functions['user'];
}