A project management app derived from Mind-Vision-Code
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
264B

  1. <?php
  2. declare(strict_types=1);
  3. require_once __DIR__ . '/../autoload.php';
  4. require_once __DIR__ . '/../database/seed_projects.php';
  5. $count = isset($argv[1]) ? max(1, (int) $argv[1]) : 6;
  6. $reset = in_array('--reset', $argv, true);
  7. seed_projects($count, $reset);

Powered by TurnKey Linux.