Skip to content

Commit

Permalink
Add since tag for constants
Browse files Browse the repository at this point in the history
  • Loading branch information
HLeithner committed Apr 25, 2019
1 parent bb54c76 commit 1fe652e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libraries/src/Router/Route.php
Expand Up @@ -22,16 +22,22 @@ class Route
{
/**
* No change, use the protocol currently used.
*
* @since __DEPLOY_VERSION__
*/
const TLS_IGNORE = 0;

/**
* Make URI secure using http over TLS (https).
*
* @since __DEPLOY_VERSION__
*/
const TLS_FORCE = 1;

/**
* Make URI unsecure using plain http (http).
*
* @since __DEPLOY_VERSION__
*/
const TLS_DISABLE = 2;

Expand Down

0 comments on commit 1fe652e

Please sign in to comment.