Your project gitignore file should not contain user-specific files 2

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

in .gitignore, line 3
  1. # Generic
  2. # --------------------------
  3. Thumbs.db

    Thumbs.db is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Fery Wardiyanto
  4. Desktop.ini
  5. .directory
  6. *.cache
  7. *.old
  8. *.log
  • feryardiant

    Ignored on Tue, 22 Oct 2024 15:49:25 GMT
in .gitignore, line 30
  1. vendor
  2. yarn.lock
  3. # IDE Project Configurations
  4. # --------------------------
  5. .idea

    .idea is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Fery Wardiyanto
  6. .settings
  7. .vscode
  8. .project
  9. *.sublime-*
  • feryardiant

    Ignored on Tue, 22 Oct 2024 15:49:28 GMT

Interfaces names should end with "Interface"

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

  1. * Any class implements this interface could have instance of ContainerInterface
  2. * injected automtically.
  3. *
  4. * @package Projek\Container
  5. */
  6. interface ContainerAware

    Interface {{ name }} should be named {{ name }}Interface for better clarity.

    Time to fix: about 1 hour
    Read doc Open Issue Permalink
    Last edited by Fery Wardiyanto
  7. {
  8. /**
  9. * Assign a container to the instance.
  10. *
  11. * @param \Projek\Container $container
  • feryardiant

    Ignored on Tue, 22 Oct 2024 15:49:18 GMT