Commit:    563ed6e547db6b76768e6eb6abcad6c7cec69670
Author:    Sara Golemon <[email protected]>         Tue, 9 Jul 2019 09:34:45 -0400
Parents:   39200fe1322f92fc5cb6beb73f164d0418a5b1e2
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=563ed6e547db6b76768e6eb6abcad6c7cec69670

Log:
Use strict comparison

Changed paths:
  M  bin/bumpRelease


Diff:
diff --git a/bin/bumpRelease b/bin/bumpRelease
index 92aa583..f5b1bbb 100755
--- a/bin/bumpRelease
+++ b/bin/bumpRelease
@@ -1,6 +1,6 @@
 #!/usr/local/bin/php
 <?php
-PHP_SAPI == 'cli' or die("Please run this script using the cli sapi");
+(PHP_SAPI === 'cli') or die("Please run this script using the cli sapi");
 
 require __DIR__ . "/../include/version.inc";
 require __DIR__ . "/../include/releases.inc";


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to