Skip to content

Commit

Permalink
Guard scripts from being run in non-CLI contexts
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Oct 3, 2022
1 parent 4e6b4c0 commit 45036b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Resources/bin/translation-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
* file that was distributed with this source code.
*/

if ('cli' !== \PHP_SAPI) {
throw new Exception('This script must be run from the command line.');
}

$usageInstructions = <<<END
Usage instructions
Expand Down

0 comments on commit 45036b1

Please sign in to comment.