name = $name; $this->visibility = $visibility; $this->value = $value; } /** * Get the value * * @return \Cake\Error\Debug\NodeInterface */ public function getValue(): NodeInterface { return $this->value; } /** * Get the property visibility * * @return string|null */ public function getVisibility(): ?string { return $this->visibility; } /** * Get the property name * * @return string */ public function getName(): string { return $this->name; } /** * @inheritDoc */ public function getChildren(): array { return [$this->value]; } }