🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 09:55:06 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Validator
/
Schema
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Validator/Schema
🔄 Refresh
✏️
Editing: AnyOfSchema.php
Writable
<?php declare(strict_types = 1); namespace MailPoet\Validator\Schema; if (!defined('ABSPATH')) exit; use MailPoet\Validator\Schema; // See: https://developer.wordpress.org/rest-api/extending-the-rest-api/schema/#oneof-and-anyof class AnyOfSchema extends Schema { protected $schema = [ 'anyOf' => [], ]; /** @param Schema[] $schemas */ public function __construct( array $schemas ) { foreach ($schemas as $schema) { $this->schema['anyOf'][] = $schema->toArray(); } } public function nullable(): self { $null = ['type' => 'null']; $anyOf = $this->schema['anyOf']; $value = in_array($null, $anyOf, true) ? $anyOf : array_merge($anyOf, [$null]); return $this->updateSchemaProperty('anyOf', $value); } public function nonNullable(): self { $null = ['type' => 'null']; $anyOf = $this->schema['anyOf']; $value = array_filter($anyOf, function ($item) use ($null) { return $item !== $null; }); return $this->updateSchemaProperty('anyOf', $value); } }
💾 Save Changes
❌ Cancel