Lines Matching refs:defaultValue
392 public $defaultValue; variable in ArgInfo
394 …ring $name, int $sendBy, bool $isVariadic, ?Type $type, ?Type $phpDocType, ?string $defaultValue) { argument
400 $this->defaultValue = $defaultValue;
408 && $this->defaultValue === $other->defaultValue;
436 return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN";
441 return '"' . addslashes($this->defaultValue) . '"';
448 if ($this->defaultValue === null) {
452 switch ($this->defaultValue) {
458 return "&{$this->defaultValue};";
461 return $this->defaultValue;
697 if ($arg->defaultValue && !$arg->hasProperDefaultValue()) {
915 if ($arg->defaultValue !== null) {
931 $defaultValue = $arg->getDefaultValueAsMethodSynopsisString();
932 if ($defaultValue !== null) {
934 if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9]*$/', $defaultValue)) {
935 $constant = $doc->createElement('constant', $defaultValue);
938 $initializer->nodeValue = $defaultValue;
953 $arg->defaultValue = null;
1935 if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) {