Skip to content

Commit

Permalink
Merge branch '6.0' into 6.1
Browse files Browse the repository at this point in the history
* 6.0:
  [Console] Fix `Helper::removeDecoration` hyperlink bug
  Guard scripts from being run in non-CLI contexts
  Guard scripts from being run in non-CLI contexts
  a readonly property must not be reported as being writable
  • Loading branch information
fabpot committed Oct 7, 2022
2 parents 45d0f5b + 6f99eb1 commit e6cd330
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 e6cd330

Please sign in to comment.