FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
symfony
/
validator
/
Util
Edit File: PropertyPath.php
<?php namespace MailPoetVendor\Symfony\Component\Validator\Util; if (!defined('ABSPATH')) exit; class PropertyPath { public static function append(string $basePath, string $subPath) { if ('' !== $subPath) { if ('[' === $subPath[0]) { return $basePath . $subPath; } return '' !== $basePath ? $basePath . '.' . $subPath : $subPath; } return $basePath; } private function __construct() { } }
Save
Back