Your project uses discouraged functions to kill scripts

More information: https://insight.symfony.com/what-we-analyse/php.use_exit_function

in src/FontMaker.php, line 117
  1. }
  2. private function error(string $message): never
  3. {
  4. $this->message($message, 'Error');
  5. exit(1);

    This line stops the execution flow, without explanation. If this is for debug, you should remove it. If this is to deal with an error, use exceptions instead.

    Time to fix: about 4 hours
    Read doc Permalink
    Last edited by Laurent Muller
  6. }
  7. /**
  8. * @phpstan-param array<int, MapType> $map
  9. *