TO DO
All code is indented with four spaces, not tabs and Symfony Coding Standards. Remember that the main advantage of standards is that every piece of code looks and feels familiar, it's not about this or that being more readable.
- Class member variables are camel case - e.g firstName
- Database column names use underscores - e.g first_name
- Date time columns end with _at - e.g created_at
- Boolean columns start with is_ - e.g is_awesome
- Template names use camelCase - e.g firstName.html.twig
A bundle is simply a structured set of files within a directory that implement a single feature. So, a bundle should be created for each feature.
Bundle Structure and Best Practices
TO DO
TO DO
symfony-pinterest-like-project may be freely distributed under the MIT license.