FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
symfony
/
validator
/
Validator
Edit File: LazyProperty.php
<?php namespace MailPoetVendor\Symfony\Component\Validator\Validator; if (!defined('ABSPATH')) exit; class LazyProperty { private $propertyValueCallback; public function __construct(\Closure $propertyValueCallback) { $this->propertyValueCallback = $propertyValueCallback; } public function getPropertyValue() { return ($this->propertyValueCallback)(); } }
Save
Back