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; /** * The MongoDB\Driver\WriteError class encapsulates ..
Decoded Output download
<?php
namespace MongoDB\Driver;
/**
* The MongoDB\Driver\WriteError class encapsulates information about a write error and may be returned as an array element from MongoDB\Driver\WriteResult::getWriteErrors().
*/
final class WriteError
{
final private function __construct() {}
final public function __wakeup() {}
/**
* Returns the WriteError's error code
* @link https://php.net/manual/en/mongodb-driver-writeerror.getcode.php
*/
final public function getCode(): int {}
/**
* Returns the index of the write operation corresponding to this WriteError
* @link https://php.net/manual/en/mongodb-driver-writeerror.getindex.php
*/
final public function getIndex(): int {}
/**
* Returns additional metadata for the WriteError
* @link https://php.net/manual/en/mongodb-driver-writeerror.getinfo.php
*/
final public function getInfo(): ?object {}
/**
* Returns the WriteError's error message
* @link https://php.net/manual/en/mongodb-driver-writeerror.getmessage.php
*/
final public function getMessage(): string {}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace MongoDB\Driver;
/**
* The MongoDB\Driver\WriteError class encapsulates information about a write error and may be returned as an array element from MongoDB\Driver\WriteResult::getWriteErrors().
*/
final class WriteError
{
final private function __construct() {}
final public function __wakeup() {}
/**
* Returns the WriteError's error code
* @link https://php.net/manual/en/mongodb-driver-writeerror.getcode.php
*/
final public function getCode(): int {}
/**
* Returns the index of the write operation corresponding to this WriteError
* @link https://php.net/manual/en/mongodb-driver-writeerror.getindex.php
*/
final public function getIndex(): int {}
/**
* Returns additional metadata for the WriteError
* @link https://php.net/manual/en/mongodb-driver-writeerror.getinfo.php
*/
final public function getInfo(): ?object {}
/**
* Returns the WriteError's error message
* @link https://php.net/manual/en/mongodb-driver-writeerror.getmessage.php
*/
final public function getMessage(): string {}
}
Function Calls
None |
Stats
MD5 | dc3e7db1e55487f396eca14fbbe80d42 |
Eval Count | 0 |
Decode Time | 120 ms |