Submit
Path:
~
/
home
/
getwphos
/
public_html
/
almajd
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
parsers
/
File Content:
parse-result.php
<?php namespace Elementor\Modules\AtomicWidgets\Parsers; 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; } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
parse-errors.php
1038 bytes
0644
parse-result.php
627 bytes
0644
props-parser.php
2038 bytes
0644
style-parser.php
5750 bytes
0644
N4ST4R_ID | Naxtarrr