Text files should end with a valid new line character. 2

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

  1. -passin pass:${{ secrets.JWT_PASSPHRASE }}
  2. fi
  3. php bin/console cache:clear --env=prod
  4. php bin/console cache:warmup --env=prod
  5. php bin/console doctrine:migrations:migrate --no-interaction --env=prod
    This file ends with no newline character, or with a different newline character than other files in your project. It won't render properly on a terminal, and it's considered a bad practice.
    Time to fix: about 15 minutes
    Read doc Open Issue Permalink Copy Prompt
    Last edited by Luigi Gandemer
  1. return (new PhpCsFixer\Config())
  2. ->setRules([
  3. '@Symfony' => true,
  4. '@PHP83Migration' => true,
  5. ])
  6. ->setFinder($finder);
    This file ends with no newline character, or with a different newline character than other files in your project. It won't render properly on a terminal, and it's considered a bad practice.
    Time to fix: about 15 minutes
    Read doc Open Issue Permalink Copy Prompt
    Last edited by Luigi Gandemer