┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/gshub/wp-content/plugins/elementor/core/utils/api
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: 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; } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 error-builder.php
PHP
840 B
2026-05-05 06:08
EDIT
📄 parse-errors.php
PHP
1023 B
2026-05-05 06:08
EDIT
📄 parse-result.php
PHP
612 B
2026-05-05 06:08
EDIT
📄 response-builder.php
PHP
855 B
2026-05-05 06:08
EDIT