key = $key; $this->value = $value; } /** * Get the value * * @return \Cake\Error\Debug\NodeInterface */ public function getValue(): NodeInterface { return $this->value; } /** * Get the key * * @return \Cake\Error\Debug\NodeInterface */ public function getKey(): NodeInterface { return $this->key; } /** * @inheritDoc */ public function getChildren(): array { return [$this->value]; } }