| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/ai-engine/classes/query/ |
Upload File : |
<?php
class Meow_MWAI_Query_Parameter {
public string $name;
public ?string $description;
public ?string $type;
public ?bool $required;
public ?string $default;
public function __construct(
string $name,
?string $description,
?string $type = 'string',
?bool $required = false,
?string $default = null
) {
// Make sure the name is valid for JSON Schema
if ( !preg_match( '/^\$?[a-zA-Z0-9_]{1,64}$/', $name ) ) {
Meow_MWAI_Logging::error( "AI Engine: Invalid parameter name ($name) for Meow_MWAI_Query_Parameter." );
}
if ( !in_array( $type, [ 'string', 'number', 'integer', 'boolean', 'array', 'object' ] ) ) {
Meow_MWAI_Logging::error( "AI Engine: Invalid parameter type ($type) for Meow_MWAI_Query_Parameter." );
}
$this->name = $name;
$this->description = empty( $description ) ? '' : $description;
$this->type = empty( $type ) ? 'string' : $type;
$this->required = empty( $required ) ? false : $required;
$this->default = $default;
}
}