Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (32 sloc)
1.07 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
namespace Zend\Expressive { | |
/** | |
* @deprecated Please use Mezzio\DEFAULT_DELEGATE instead | |
*/ | |
const DEFAULT_DELEGATE = \Mezzio\DEFAULT_DELEGATE; | |
/** | |
* @deprecated Please use Mezzio\DISPATCH_MIDDLEWARE instead | |
*/ | |
const DISPATCH_MIDDLEWARE = \Mezzio\DISPATCH_MIDDLEWARE; | |
/** | |
* @deprecated Please use Mezzio\IMPLICIT_HEAD_MIDDLEWARE instead | |
*/ | |
const IMPLICIT_HEAD_MIDDLEWARE = \Mezzio\IMPLICIT_HEAD_MIDDLEWARE; | |
/** | |
* @deprecated Please use Mezzio\IMPLICIT_OPTIONS_MIDDLEWARE instead | |
*/ | |
const IMPLICIT_OPTIONS_MIDDLEWARE = \Mezzio\IMPLICIT_OPTIONS_MIDDLEWARE; | |
/** | |
* @deprecated Please use Mezzio\NOT_FOUND_MIDDLEWARE instead | |
*/ | |
const NOT_FOUND_MIDDLEWARE = \Mezzio\NOT_FOUND_MIDDLEWARE; | |
/** | |
* @deprecated Please use Mezzio\ROUTE_MIDDLEWARE instead | |
*/ | |
const ROUTE_MIDDLEWARE = \Mezzio\ROUTE_MIDDLEWARE; | |
/** | |
* @deprecated Please use Mezzio\SERVER_REQUEST_FACTORY instead | |
*/ | |
const SERVER_REQUEST_FACTORY = \Mezzio\SERVER_REQUEST_FACTORY; | |
} |