Your project gitignore file should not contain user-specific files 2
- Read doc
- Productivity
- Minor
More information: https://insight.symfony.com/what-we-analyse/git.user_specific_ignored_file
- # Generic
- # --------------------------
- Thumbs.db
- Desktop.ini
- .directory
- .DS_Store
- ._*
- *.cache
- vendor
- yarn.lock
- # IDE Project Configurations
- # --------------------------
- .idea
- .settings
- .vscode
- .project
- *.sublime-*
Interfaces names should end with "Interface"
- Read doc
- Productivity
- Info
More information: https://insight.symfony.com/what-we-analyse/php.interface_has_no_interface_suffix
- * Any class implements this interface could have instance of ContainerInterface
- * injected automtically.
- *
- * @package Projek\Container
- */
- interface ContainerAware
- {
- /**
- * Assign a container to the instance.
- *
- * @param \Projek\Container $container
feryardiant