🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 11:39:20 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
web.janapremimavi.edu.np
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
api
📍 /home/therahul/web.janapremimavi.edu.np/wp-content/plugins/elementor/core/utils/api
🔄 Refresh
✏️
Editing: parse-result.php
Writable
<?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; } }
💾 Save Changes
❌ Cancel