Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace MongoDB\Driver; use MongoDB\Driver\Exception\InvalidArgumentException; ..

Decoded Output download

<?php

namespace MongoDB\Driver;

use MongoDB\Driver\Exception\InvalidArgumentException;

/**
 * The MongoDB\Driver\Query class is a value object that represents a database query.
 * @link https://php.net/manual/en/class.mongodb-driver-query.php
 */
final class Query
{
    /**
     * Construct new Query
     * @link https://php.net/manual/en/mongodb-driver-query.construct.php
     * @param array|object $filter The search filter.
     * @param array|null $queryOptions
     * @throws InvalidArgumentException on argument parsing errors.
     */
    final public function __construct(array|object $filter, ?array $queryOptions = null) {}

    final public function __wakeup() {}
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace MongoDB\Driver;

use MongoDB\Driver\Exception\InvalidArgumentException;

/**
 * The MongoDB\Driver\Query class is a value object that represents a database query.
 * @link https://php.net/manual/en/class.mongodb-driver-query.php
 */
final class Query
{
    /**
     * Construct new Query
     * @link https://php.net/manual/en/mongodb-driver-query.construct.php
     * @param array|object $filter The search filter.
     * @param array|null $queryOptions
     * @throws InvalidArgumentException on argument parsing errors.
     */
    final public function __construct(array|object $filter, ?array $queryOptions = null) {}

    final public function __wakeup() {}
}

Function Calls

None

Variables

None

Stats

MD5 56c642f9914fe67dcd0643c85e9c780d
Eval Count 0
Decode Time 104 ms