identifier = $identifier; $this->expression = $expression; $this->processor = $processor; } public function getIdentifier(): string { return $this->identifier; } public function getExpression(): string { return $this->expression; } public function getProcessor(): callable { return $this->processor; } }