* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://opensource.org/licenses/MIT */ class BadMethodCallException extends Exception { protected static $defaultKey = 'invalidMethod'; protected static $defaultFallback = 'The method "{ method }" does not exist'; protected static $defaultHttpCode = 400; protected static $defaultData = ['method' => null]; }