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 declare(strict_types=1); namespace Drupal\Core\Form\Exception; use Symfony\Compon..
Decoded Output download
<?php
declare(strict_types=1);
namespace Drupal\Core\Form\Exception;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
/**
* Defines an exception used, when the POST HTTP body is broken.
*/
class BrokenPostRequestException extends BadRequestHttpException {
/**
* The maximum upload size.
*
* @var int
*/
protected int $size;
/**
* Constructs a new BrokenPostRequestException.
*
* @param int $max_upload_size
* The size of the maximum upload size in bytes.
* @param string $message
* The internal exception message.
* @param \Exception|null $previous
* The previous exception.
* @param int $code
* The internal exception code.
*/
public function __construct(int $max_upload_size, string $message = '', ?\Exception $previous = NULL, int $code = 0) {
parent::__construct($message, $previous, $code);
$this->size = $max_upload_size;
}
/**
* Returns the maximum upload size in bytes.
*
* @return int
* The file size limit in bytes based on the PHP upload_max_filesize and
* post_max_size.
*/
public function getSize(): int {
return $this->size;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Drupal\Core\Form\Exception;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
/**
* Defines an exception used, when the POST HTTP body is broken.
*/
class BrokenPostRequestException extends BadRequestHttpException {
/**
* The maximum upload size.
*
* @var int
*/
protected int $size;
/**
* Constructs a new BrokenPostRequestException.
*
* @param int $max_upload_size
* The size of the maximum upload size in bytes.
* @param string $message
* The internal exception message.
* @param \Exception|null $previous
* The previous exception.
* @param int $code
* The internal exception code.
*/
public function __construct(int $max_upload_size, string $message = '', ?\Exception $previous = NULL, int $code = 0) {
parent::__construct($message, $previous, $code);
$this->size = $max_upload_size;
}
/**
* Returns the maximum upload size in bytes.
*
* @return int
* The file size limit in bytes based on the PHP upload_max_filesize and
* post_max_size.
*/
public function getSize(): int {
return $this->size;
}
}
Function Calls
None |
Stats
MD5 | 29e2430c0fd10324a0e6ea25aba9f63d |
Eval Count | 0 |
Decode Time | 90 ms |