Lines Matching refs:this

101         $this->blacklist = $blacklist;
104 $this->snapshotConstants();
108 $this->snapshotFunctions();
112 $this->snapshotClasses();
116 $this->snapshotInterfaces();
120 $this->setupSuperGlobalArrays();
121 $this->snapshotGlobals();
125 $this->snapshotStaticAttributes();
129 $this->iniSettings = ini_get_all(null, false);
133 $this->includedFiles = get_included_files();
137 $this->traits = get_declared_traits();
146 return $this->blacklist;
154 return $this->globalVariables;
162 return $this->superGlobalVariables;
172 return $this->superGlobalArrays;
180 return $this->staticAttributes;
188 return $this->iniSettings;
196 return $this->includedFiles;
204 return $this->constants;
212 return $this->functions;
220 return $this->interfaces;
228 return $this->classes;
236 return $this->traits;
247 $this->constants = $constants['user'];
258 $this->functions = $functions['user'];
273 $this->classes[] = $className;
276 $this->classes = array_reverse($this->classes);
291 $this->interfaces[] = $interfaceName;
294 $this->interfaces = array_reverse($this->interfaces);
302 $superGlobalArrays = $this->superGlobalArrays();
305 $this->snapshotSuperGlobalArray($superGlobalArray);
311 $this->canBeSerialized($GLOBALS[$key]) &&
312 !$this->blacklist->isGlobalVariableBlacklisted($key)) {
313 $this->globalVariables[$key] = unserialize(serialize($GLOBALS[$key]));
325 $this->superGlobalVariables[$superGlobalArray] = array();
329 … $this->superGlobalVariables[$superGlobalArray][$key] = unserialize(serialize($value));
339 foreach ($this->classes as $className) {
347 if ($this->blacklist->isStaticAttributeBlacklisted($className, $name)) {
354 if ($this->canBeSerialized($value)) {
361 $this->staticAttributes[$className] = $snapshot;
373 $this->superGlobalArrays = array(
384 $this->superGlobalArrays = array_merge(
385 $this->superGlobalArrays,