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 Illuminate\Database; use RuntimeException; class MultipleRecordsFoundEx..
Decoded Output download
<?php
namespace Illuminate\Database;
use RuntimeException;
class MultipleRecordsFoundException extends RuntimeException
{
/**
* The number of records found.
*
* @var int
*/
public $count;
/**
* Create a new exception instance.
*
* @param int $count
* @param int $code
* @param \Throwable|null $previous
* @return void
*/
public function __construct($count, $code = 0, $previous = null)
{
$this->count = $count;
parent::__construct("$count records were found.", $code, $previous);
}
/**
* Get the number of records found.
*
* @return int
*/
public function getCount()
{
return $this->count;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Database;
use RuntimeException;
class MultipleRecordsFoundException extends RuntimeException
{
/**
* The number of records found.
*
* @var int
*/
public $count;
/**
* Create a new exception instance.
*
* @param int $count
* @param int $code
* @param \Throwable|null $previous
* @return void
*/
public function __construct($count, $code = 0, $previous = null)
{
$this->count = $count;
parent::__construct("$count records were found.", $code, $previous);
}
/**
* Get the number of records found.
*
* @return int
*/
public function getCount()
{
return $this->count;
}
}
Function Calls
None |
Stats
MD5 | 708fdbf7e6d324ac3957e82f2de6f6dc |
Eval Count | 0 |
Decode Time | 109 ms |