/
/
home
/
melaqxso
/
public_html
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
api
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.61
PHP 7.4.33
Dir:
/home/melaqxso/public_html/wp-content/plugins/elementor/core/utils/api
Edit:
/home/melaqxso/public_html/wp-content/plugins/elementor/core/utils/api/parse-result.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; } }
Ukuran: 612 B