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 834ba2a commit f1d0f9d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Resources/bin/common.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.');
}

define('LINE_WIDTH', 75);

define('LINE', str_repeat('-', LINE_WIDTH)."\n");
Expand Down
4 changes: 4 additions & 0 deletions Resources/bin/update-data.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
use Symfony\Component\Intl\Locale;
use Symfony\Component\Intl\Util\GitRepository;

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

require_once __DIR__.'/common.php';
require_once __DIR__.'/autoload.php';

Expand Down

0 comments on commit f1d0f9d

Please sign in to comment.