for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AppserverIo\Psr\Servlet\Utils\RequestHandlerKeys
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2015 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io-psr/servlet
* @link http://www.appserver.io
*/
namespace AppserverIo\Psr\Servlet\Utils;
* Utility class that contains the request handler keys.
class RequestHandlerKeys
{
* The key for the an error message.
* @var string
const ERROR_MESSAGE = 'appserver-io.psr.servlet.utils.request-handler-keys.error-message';
* The key for the an array of error messages.
const ERROR_MESSAGES = 'appserver-io.psr.servlet.utils.request-handler-keys.error-messages';
* This is a utility class, so protect it against direct instantiation.
private function __construct()
}
* This is a utility class, so protect it against cloning.
* @return void
private function __clone()