You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
186B

  1. <?php
  2. declare(strict_types=1);
  3. require_once __DIR__ . '/../database/seed_employees.php';
  4. $targetTotal = isset($argv[1]) ? max(1, (int) $argv[1]) : 1000;
  5. seed_employees($targetTotal);

Powered by TurnKey Linux.