CacheableMethodNotAllowedHttpException.php in Drupal 8
File
core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php
View source
<?php
namespace Drupal\Core\Http\Exception;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\CacheableDependencyTrait;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
class CacheableMethodNotAllowedHttpException extends MethodNotAllowedHttpException implements CacheableDependencyInterface {
use CacheableDependencyTrait;
public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) {
$this
->setCacheability($cacheability);
parent::__construct($allow, $message, $previous, $code);
}
}