# elementor/3.34.1/core/utils/api/parse-result.php

Elementor Website Builder – more than just a page builder, version 3.34.1. 40 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.34.1/code/core/utils/api/parse-result.php
- Raw: https://pluginprobe.com/plugins/elementor/3.34.1/raw/core/utils/api/parse-result.php
- Modified: 2025-09-15T10:10:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.34.1/code/core/utils/api/parse-result.php#L10-L20`.

```php
<?php

namespace Elementor\Core\Utils\Api;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Parse_Result {
	private Parse_Errors $errors;

	private $value;

	public static function make() {
		return new static();
	}

	public function __construct() {
		$this->errors = Parse_Errors::make();
	}

	public function wrap( $value ): self {
		$this->value = $value;

		return $this;
	}

	public function unwrap() {
		return $this->value;
	}

	public function is_valid(): bool {
		return $this->errors->is_empty();
	}

	public function errors(): Parse_Errors {
		return $this->errors;
	}
}

```
