Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: class-number-schema.php
<?php /** * This file is part of the MailPoet plugin. * * @package MailPoet\EmailEditor */ declare( strict_types = 1 ); namespace MailPoet\EmailEditor\Validator\Schema; use MailPoet\EmailEditor\Validator\Schema; /** * Represents a schema for a number. * See: https://developer.wordpress.org/rest-api/extending-the-rest-api/schema/#numbers */ class Number_Schema extends Schema { /** * Schema definition. * * @var array */ protected $schema = array( 'type' => 'number', ); /** * Sets the minimum value of the number. * * @param float $value Minimum value of the number. */ public function minimum( float $value ): self { return $this->update_schema_property( 'minimum', $value ) ->unset_schema_property( 'exclusiveMinimum' ); } /** * Sets the exclusiveMinimum property to true. * * @param float $value Minimum value of the number. */ public function exclusiveMinimum( float $value ): self { return $this->update_schema_property( 'minimum', $value ) ->update_schema_property( 'exclusiveMinimum', true ); } /** * Sets the maximum value of the number. * * @param float $value Maximum value of the number. */ public function maximum( float $value ): self { return $this->update_schema_property( 'maximum', $value ) ->unset_schema_property( 'exclusiveMaximum' ); } /** * Sets the exclusiveMaximum property to true. * * @param float $value Maximum value of the number. */ public function exclusiveMaximum( float $value ): self { return $this->update_schema_property( 'maximum', $value ) ->update_schema_property( 'exclusiveMaximum', true ); } /** * Sets the multipleOf property. * * @param float $value Multiple of the number. */ public function multipleOf( float $value ): self { return $this->update_schema_property( 'multipleOf', $value ); } }