diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:17:28 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2018-10-13 14:17:28 +0200 |
commit | 37c329d7153b65fd2430fa42e8af8e8a0cbc0a41 (patch) | |
tree | 7041c722228f74286b96c50fc834652f0c29156f /sapi/phpdbg/web-bootstrap.php | |
parent | 6c2c7dabee006fa735307d92bb223a1fa3d47414 (diff) | |
download | php-git-37c329d7153b65fd2430fa42e8af8e8a0cbc0a41.tar.gz |
Trim trailing whitespace in source code files
Diffstat (limited to 'sapi/phpdbg/web-bootstrap.php')
-rw-r--r-- | sapi/phpdbg/web-bootstrap.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/phpdbg/web-bootstrap.php b/sapi/phpdbg/web-bootstrap.php index 7b8c5d30de..046062997e 100644 --- a/sapi/phpdbg/web-bootstrap.php +++ b/sapi/phpdbg/web-bootstrap.php @@ -1,26 +1,26 @@ <?php /** * The following file shows how to bootstrap phpdbg so that you can mock specific server environments - * + * * eval include("web-bootstrap.php") * exec index.php * compile * break ... * run */ -if (!defined('PHPDBG_BOOTSTRAPPED')) +if (!defined('PHPDBG_BOOTSTRAPPED')) { /* define these once */ define("PHPDBG_BOOTPATH", "/opt/php-zts/htdocs"); define("PHPDBG_BOOTSTRAP", "index.php"); - define("PHPDBG_BOOTSTRAPPED", sprintf("/%s", PHPDBG_BOOTSTRAP)); + define("PHPDBG_BOOTSTRAPPED", sprintf("/%s", PHPDBG_BOOTSTRAP)); } /* * Superglobals are JIT, phpdbg will not over-write whatever you set during bootstrap */ -$_SERVER = array +$_SERVER = array ( 'HTTP_HOST' => 'localhost', 'HTTP_CONNECTION' => 'keep-alive', |