SlideShare uma empresa Scribd logo
1 de 82
Baixar para ler offline
30 Symfony Best Practices




                     30 Symfony Best
                         Practices
                     SymfonyDay ’09, Cologne, Germany
                           September 4th, 2009




 Nicolas Perriault
30 Symfony Best Practices



                     Best Practices?
           A Best practice is a technique, method, process, activity, incentive or
          reward that is believed to be more effective at delivering a particular
           outcome than any other technique, method, process, etc.The idea is
            that with proper processes, checks, and testing, a desired outcome
                  can be delivered with fewer problems and unforeseen
              complications. Best practices can also be defined as the most
           efficient (least amount of effort) and effective (best results) way of
             accomplishing a task, based on repeatable procedures that have
                proven themselves over time for large numbers of people.
                                                      -- Wikipedia, august 2009


 Nicolas Perriault                                                                   2
30 Symfony Best Practices



                     Best Practices?


          Making. Stuff. Efficient.



 Nicolas Perriault                     3
30 Symfony Best Practices



                     Best Practices?
        •    Moreover, best practices in software
             development and symfony are all about:

            •   improving communication between
                developers through standardization

            •   enhancing security, maintainability, portability
                and interoperability by increasing code
                quality


 Nicolas Perriault                                                 4
30 Symfony Best Practices



                       Disclaimer
        •    These best practices are not sorted by
             importance, nor criticality

        •    All best practices listed here are debatable, at
             least because they’re based on my own
             experience

        •    There are always exceptions

        •    Some best practices are not symfony-specific ;
             “Zake Igniter” developers, you can take some notes
             too.
 Nicolas Perriault                                                5
30 Symfony Best Practices




                     Let’s begin...


 Nicolas Perriault
30 Symfony Best Practices



                             #0

        •    Always write “symfony” starting with a
             small cap.




 Nicolas Perriault                                    7
30 Symfony Best Practices



                                   #0

        •    Always write “symfony” starting with a
             small cap.
        •    Or maybe not (mostly depends on the result of rand(0,   1))




 Nicolas Perriault                                                         7
30 Symfony Best Practices



                                 #1
        •    Manage the View within the View

            •   View is intended to be handled in templates

            •   Try to avoid the use of the view.yml file

            •   Try to avoid handling the view from the
                controller (eeeek) or the model (you’re
                fired)

            •   Slots can help (a lot)

 Nicolas Perriault                                            8
30 Symfony Best Practices



                                                               #1
  For example, handling <title> tag and assets:




                Note: here the value of $defaultTitle could (should) be handled
                                in an app.yml configuration file




 Nicolas Perriault                                                                9
30 Symfony Best Practices



                               #1

        • Remember this: if you’re a graphic designer/
             integrator, you don’t want to deal with YAML or
             complex PHP code to manage the presentation




 Nicolas Perriault                                             10
30 Symfony Best Practices



                             #2

        • Always enable output escaping and CSRF
             protection
            • starting with symfony 1.3, they’re enabled
                by default



 Nicolas Perriault                                         11
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           12
30 Symfony Best Practices



                              #3
        • Always call a redirect after posting data
         • for security purpose
         • for ergonomy
         • to avoid duplicates in database
         • don’t forget to add a flash message to the
                end user after every transaction made

 Nicolas Perriault                                      13
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                14
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           15
30 Symfony Best Practices



                               #4
        •    No Propel Criteria or Doctrine_Query
             instances, SQL queries and any ORM/RDBMS
             specific calls should ever be found neither in
             the templates nor in the actions.
        •    The more you couple your model to your
             controllers and views, the more it’ll be hard
             to change your persistence backend or
             strategy.

 Nicolas Perriault                                           16
30 Symfony Best Practices



                            BAD



                            Doctrine_Collection
 Nicolas Perriault                                17
30 Symfony Best Practices



                     BETTER



                            Array
 Nicolas Perriault                  18
30 Symfony Best Practices



                      GOOD



                      Array (ideally)


 Nicolas Perriault                      19
30 Symfony Best Practices



                              #5
        • Symfony core files should never be
             modified to add or change the features they
             provide, but replaced through the
             autoloading mechanism, or way better:
             extended.
        • Tweaking the factories.yml file and
             catching native symfony events can help a lot
             achieving this goal.

 Nicolas Perriault                                           20
30 Symfony Best Practices



                            BAD
                                  Unused




 Nicolas Perriault                         21
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           22
30 Symfony Best Practices



                            #6

        • The templates must contain PHP
             alternative templating syntax, for
             readability and ease of use.




 Nicolas Perriault                                23
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                24
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           25
30 Symfony Best Practices



                               #7
        • Verify cache settings, especially that the
             cache is actually enabled in prod
             environment. Don’t laugh, it happened quite
             a lot.
        • If you use cache, create a staging
             environment to test the caching strategy if it
             doesn't exist.
        • Better: avoid using cache. No kidding.
 Nicolas Perriault                                            26
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           27
30 Symfony Best Practices



                              #8
        • Use routes instead of raw module/action
             couple in url_for(), link_to() and
             redirect() calls.

        • Also, default routes should be deactivated
             by default (at least in apps which don’t run
             admin-generator 1.0 modules)


 Nicolas Perriault                                          28
30 Symfony Best Practices



                             #9
        • All code comments, phpdoc, INSTALL,
             CHANGELOG and README files, variables,
             functions, classes and methods names and
             more generally the developer
             documentation, should be written in
             English.


 Nicolas Perriault                                      29
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                30
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           31
30 Symfony Best Practices



                            #10

        • Catch and log exception messages, display
             human readable error messages to the end
             user




 Nicolas Perriault                                      32
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                33
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           34
30 Symfony Best Practices



                            #11


        • Only deploy production front controllers in
             production




 Nicolas Perriault                                      35
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                36
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                37
30 Symfony Best Practices



                             #12
        • Ideally:
         • A typical controller method should never
                exceed ~30 lines.
            • A typical controller class should never
                have more than ~15 action methods.


 Nicolas Perriault                                      38
x
30 Symfony Best Practices



                                  BAD




 Nicolas Perriault   ~2000 lines on this actions class (the slidescreen size was to short to list them all). Unmaintenable.   39
30 Symfony Best Practices



                                          #13

        • Always apply consistent coding
             standards.
        • Always apply Symfony’s coding standards.
             http://trac.symfony-project.org/wiki/HowToContributeToSymfony#CodingStandards




 Nicolas Perriault                                                                           40
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                41
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           42
30 Symfony Best Practices



                            #14

        • Session persistence logic should
             reside in sfUser derived class methods, and
             only them.




 Nicolas Perriault                                         43
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                44
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           45
30 Symfony Best Practices



                            #15


        • Never serialize objects in the session


 Nicolas Perriault                                 46
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                47
30 Symfony Best Practices



                                    GOOD



        Note: of course, a setRecentlySeenProducts() method could have been implemented in the myUser class.




 Nicolas Perriault                                                                                             48
30 Symfony Best Practices



                               #16


        • Always create customized 404 error and
             500 error pages




 Nicolas Perriault                                 49
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                50
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           51
30 Symfony Best Practices



                                #17
        •    There should never be any direct use of
             sfContext inside the Model layer (eg.
             sfContext::getInstance())

            •   Because the sfContext instance you get can
                differ a lot regarding the used env (cli, test,
                dev, prod...)

            •   It would make your code quite untestable

        •    Yes, it’s hard.

 Nicolas Perriault                                                52
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                53
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                54
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           55
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           56
30 Symfony Best Practices



                             #18
        • Avoid creating a big generic utility class
             with many static methods
            • It's like reinventing procedural
                programming or using functions
        • Write specialized classes

 Nicolas Perriault                                     57
30 Symfony Best Practices



                                         #19

        • Use sfLogger for debugging instead of
             echoing variable or debug messages
        •    FirePHP(1) or FireSymfony(2) custom loggers
             can be more than helpful to debug your app
             (webservices for example)
            (1) http://firephp.org/
            (2) http://firesymfony.org/



 Nicolas Perriault                                         58
30 Symfony Best Practices



                              GOOD
                                                               factories.yml




     The FireSymfony Firebug extension for Firefox in action

 Nicolas Perriault                                                             59
30 Symfony Best Practices



                              #20
        •    If source code is managed through a SCM
             tool, versioned files should NEVER contain
             passwords, local paths, etc.

            •   Files containing them should be added to the
                ignore directive

            •   Typical example: the databases.yml file

            •   Distribute platform-dependent configuration
                files

 Nicolas Perriault                                             60
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                61
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           62
30 Symfony Best Practices



                                     #21
        • Write unit and functional tests:
           • Unit test symfony business logicit’s
             don’t
                   test your
                               or Doctrine again,
                                                  (please

                     already done)

               • Functionally test the user interface
                     when it’s important (eg.
                     404/403/401 HTTP codes, security and user
                     authentication, transactions and forms, etc.)

 Nicolas Perriault                                                   63
30 Symfony Best Practices



                             #21
           Hint: you can write your own functional browser/
                     tester to avoid duplicate test code




 Nicolas Perriault                                            64
30 Symfony Best Practices



                             #22
        •    Never use absolute paths in code, or at
             least put them in YAML configuration files.

        •    Make your symfony project portable: use
             dirname(__FILE__) to point at the symfony
             libs in the project configuration class.
        •    You can put symfony lib in a lib/vendor dir.


 Nicolas Perriault                                          65
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                66
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           67
30 Symfony Best Practices



                             #23
        • Data objects should always be represented
             by a slug in urls, not a primary key

            • For security: numeric PKs are easily
                guessable, whereas slugs are not
            • For URL usability and SEO:
                /article/symfony-rulez.html   is sexier
                than /article/123.html

 Nicolas Perriault                                        68
30 Symfony Best Practices



                             #24
        • Every application or project specific
             configuration variable should be
             stored in its app.yml file

        • You can share project-wide (cross-
             applications) settings by putting an app.yml
             file within the root config/ folder of the
             project

 Nicolas Perriault                                          69
30 Symfony Best Practices



                            BAD




 Nicolas Perriault                70
30 Symfony Best Practices



                      GOOD



                             Default value

 Nicolas Perriault                      71
30 Symfony Best Practices



                             #25
        • Avoid versioning any generated Base* class
             file, especially if you want to write
             reusable plugins or redistribute your
             work.
            • Maybe people will want to extend or add
                behaviors to your model classes.


 Nicolas Perriault                                      72
30 Symfony Best Practices



                            #26
        • Use symfony tasks system for CLI batch
             scripts
        • Tasks have access to all the symfony
             facilities
        • Tasks are designed for the CLI
           • Text output
           • Pretty printing
 Nicolas Perriault                                 73
30 Symfony Best Practices



                            #26




 Nicolas Perriault                74
30 Symfony Best Practices



                            #27
        • Alter request and response
             programmatically by using filters.

        • You can use the request.filter_parameters
             and response.filter_content events too.

        • Filters are easy to setup and to debug,
             whereas events are more clean and
             powerful. Matter of taste.

 Nicolas Perriault                                     75
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           76
30 Symfony Best Practices



                      GOOD




 Nicolas Perriault           77
30 Symfony Best Practices



                             #28
        •    Always write a README, an INSTALL and a
             CHANGELOG file at the root of the project
             (or the plugin). If open sourced, a LICENSE
             file is appreciated too.
        •    And please don’t release plugins under the
             terms of the GPL license.
             Symfony Plugin != Operating System


 Nicolas Perriault                                         78
30 Symfony Best Practices



                             #29

        • Share features and modules across
             applications by writing plugins

        • If it’s really cool, release it publicly

 Nicolas Perriault                                   79
30 Symfony Best Practices



                             #30
        • Study other frameworks code!
         • They might have good, even better ideas
                to solve the problem you have
            • Even frameworks written in other
                languages than PHP (Django, Rails,
                Spring...)


 Nicolas Perriault                                   80
30 Symfony Best Practices




                       Questions?

      Nicolas Perriault
      nperriault@gmail.com
      +33 660 920 867


          prendreuncafe.com | symfonians.net | symfony-project.org



 Nicolas Perriault

Mais conteúdo relacionado

Mais procurados

IBM Global Security Kit as a Cryptographic layer for IBM middleware
IBM Global Security Kit as a Cryptographic layer for IBM middlewareIBM Global Security Kit as a Cryptographic layer for IBM middleware
IBM Global Security Kit as a Cryptographic layer for IBM middlewareOktawian Powazka
 
Design applicatif avec symfony2
Design applicatif avec symfony2Design applicatif avec symfony2
Design applicatif avec symfony2RomainKuzniak
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first stepsRenato Primavera
 
Workshop spring session 2 - La persistance au sein des applications Java
Workshop spring   session 2 - La persistance au sein des applications JavaWorkshop spring   session 2 - La persistance au sein des applications Java
Workshop spring session 2 - La persistance au sein des applications JavaAntoine Rey
 
Effective testing with pytest
Effective testing with pytestEffective testing with pytest
Effective testing with pytestHector Canto
 
Integration testing with spring @snow one
Integration testing with spring @snow oneIntegration testing with spring @snow one
Integration testing with spring @snow oneVictor Rentea
 
SOLID : les principes à l’origine du succès de Symfony et de vos applications
SOLID : les principes à l’origine du succès de Symfony et de vos applicationsSOLID : les principes à l’origine du succès de Symfony et de vos applications
SOLID : les principes à l’origine du succès de Symfony et de vos applicationsVladyslav Riabchenko
 
How to Build Your Own Test Automation Framework?
How to Build Your Own Test Automation Framework?How to Build Your Own Test Automation Framework?
How to Build Your Own Test Automation Framework?Dmitry Buzdin
 
Gareth hayes. non alphanumeric javascript-php and shared fuzzing
Gareth hayes. non alphanumeric javascript-php and shared fuzzingGareth hayes. non alphanumeric javascript-php and shared fuzzing
Gareth hayes. non alphanumeric javascript-php and shared fuzzingYury Chemerkin
 
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021Natan Silnitsky
 
PHP 良好實踐 (Best Practice)
PHP 良好實踐 (Best Practice)PHP 良好實踐 (Best Practice)
PHP 良好實踐 (Best Practice)Win Yu
 
Notions de base de JavaScript
Notions de base de JavaScriptNotions de base de JavaScript
Notions de base de JavaScriptKristen Le Liboux
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery FundamentalsGil Fink
 
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)Stephen Chin
 
Héritage et polymorphisme- Jihen HEDHLI
Héritage et polymorphisme- Jihen HEDHLIHéritage et polymorphisme- Jihen HEDHLI
Héritage et polymorphisme- Jihen HEDHLIJihenHedhli1
 
Javascript es6-ejercicios-resueltos-parte-1
Javascript es6-ejercicios-resueltos-parte-1Javascript es6-ejercicios-resueltos-parte-1
Javascript es6-ejercicios-resueltos-parte-1josegmay
 

Mais procurados (20)

IBM Global Security Kit as a Cryptographic layer for IBM middleware
IBM Global Security Kit as a Cryptographic layer for IBM middlewareIBM Global Security Kit as a Cryptographic layer for IBM middleware
IBM Global Security Kit as a Cryptographic layer for IBM middleware
 
Design applicatif avec symfony2
Design applicatif avec symfony2Design applicatif avec symfony2
Design applicatif avec symfony2
 
Spring boot jpa
Spring boot jpaSpring boot jpa
Spring boot jpa
 
JUnit & Mockito, first steps
JUnit & Mockito, first stepsJUnit & Mockito, first steps
JUnit & Mockito, first steps
 
PHPUnit - Unit testing
PHPUnit - Unit testingPHPUnit - Unit testing
PHPUnit - Unit testing
 
Workshop spring session 2 - La persistance au sein des applications Java
Workshop spring   session 2 - La persistance au sein des applications JavaWorkshop spring   session 2 - La persistance au sein des applications Java
Workshop spring session 2 - La persistance au sein des applications Java
 
Package in Java
Package in JavaPackage in Java
Package in Java
 
Effective testing with pytest
Effective testing with pytestEffective testing with pytest
Effective testing with pytest
 
Integration testing with spring @snow one
Integration testing with spring @snow oneIntegration testing with spring @snow one
Integration testing with spring @snow one
 
Bbl sur les tests
Bbl sur les testsBbl sur les tests
Bbl sur les tests
 
SOLID : les principes à l’origine du succès de Symfony et de vos applications
SOLID : les principes à l’origine du succès de Symfony et de vos applicationsSOLID : les principes à l’origine du succès de Symfony et de vos applications
SOLID : les principes à l’origine du succès de Symfony et de vos applications
 
How to Build Your Own Test Automation Framework?
How to Build Your Own Test Automation Framework?How to Build Your Own Test Automation Framework?
How to Build Your Own Test Automation Framework?
 
Gareth hayes. non alphanumeric javascript-php and shared fuzzing
Gareth hayes. non alphanumeric javascript-php and shared fuzzingGareth hayes. non alphanumeric javascript-php and shared fuzzing
Gareth hayes. non alphanumeric javascript-php and shared fuzzing
 
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021
How to successfully manage a ZIO fiber’s lifecycle - Functional Scala 2021
 
PHP 良好實踐 (Best Practice)
PHP 良好實踐 (Best Practice)PHP 良好實踐 (Best Practice)
PHP 良好實踐 (Best Practice)
 
Notions de base de JavaScript
Notions de base de JavaScriptNotions de base de JavaScript
Notions de base de JavaScript
 
jQuery Fundamentals
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
 
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)
JavaFX 2 and Scala - Like Milk and Cookies (33rd Degrees)
 
Héritage et polymorphisme- Jihen HEDHLI
Héritage et polymorphisme- Jihen HEDHLIHéritage et polymorphisme- Jihen HEDHLI
Héritage et polymorphisme- Jihen HEDHLI
 
Javascript es6-ejercicios-resueltos-parte-1
Javascript es6-ejercicios-resueltos-parte-1Javascript es6-ejercicios-resueltos-parte-1
Javascript es6-ejercicios-resueltos-parte-1
 

Destaque

Symfony2: 30 astuces et bonnes pratiques
Symfony2: 30 astuces et bonnes pratiquesSymfony2: 30 astuces et bonnes pratiques
Symfony2: 30 astuces et bonnes pratiquesNoel GUILBERT
 
Dev traning 2016 symfony
Dev traning 2016   symfonyDev traning 2016   symfony
Dev traning 2016 symfonySacheen Dhanjie
 
Mastering Twig (DrupalCon Barcelona 2015)
Mastering Twig (DrupalCon Barcelona 2015)Mastering Twig (DrupalCon Barcelona 2015)
Mastering Twig (DrupalCon Barcelona 2015)Javier Eguiluz
 
Design patterns avec Symfony
Design patterns avec SymfonyDesign patterns avec Symfony
Design patterns avec SymfonyMohammed Rhamnia
 
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years later
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years laterSymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years later
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years laterHaehnchen
 
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ss
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ssAlphorm.com Support de la Formation Symfony 3 , les fondamentaux-ss
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ssAlphorm
 
ゲームツクール第8回「Unity×Photon Cloud」
ゲームツクール第8回「Unity×Photon Cloud」ゲームツクール第8回「Unity×Photon Cloud」
ゲームツクール第8回「Unity×Photon Cloud」ゲームツクール!
 
Symfony2 - garść porad
Symfony2 - garść poradSymfony2 - garść porad
Symfony2 - garść poradMichał Kurzeja
 
symfony 1.1 goodness (Dutch PHP Conference 2008)
symfony 1.1 goodness (Dutch PHP Conference 2008)symfony 1.1 goodness (Dutch PHP Conference 2008)
symfony 1.1 goodness (Dutch PHP Conference 2008)Fabien Potencier
 
Symfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processingSymfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processingWojciech Ciołko
 
Symfony Components 2.0 on PHP 5.3
Symfony Components 2.0 on PHP 5.3Symfony Components 2.0 on PHP 5.3
Symfony Components 2.0 on PHP 5.3Fabien Potencier
 
Debugging and Profiling Symfony Apps
Debugging and Profiling Symfony AppsDebugging and Profiling Symfony Apps
Debugging and Profiling Symfony AppsAlvaro Videla
 
symfony Live 2010 - Using Doctrine Migrations
symfony Live 2010 -  Using Doctrine Migrationssymfony Live 2010 -  Using Doctrine Migrations
symfony Live 2010 - Using Doctrine MigrationsD
 
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketw
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketwAsynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketw
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketwLuke Adamczewski
 
Przetwarzanie asynchroniczne w zastosowaniach webowych
Przetwarzanie asynchroniczne w zastosowaniach webowychPrzetwarzanie asynchroniczne w zastosowaniach webowych
Przetwarzanie asynchroniczne w zastosowaniach webowychleafnode
 
Clever and innovative use of trends in HR
Clever and innovative use of trends in HRClever and innovative use of trends in HR
Clever and innovative use of trends in HRTom Haak
 
Building a documented RESTful API in just a few hours with Symfony
Building a documented RESTful API in just a few hours with SymfonyBuilding a documented RESTful API in just a few hours with Symfony
Building a documented RESTful API in just a few hours with Symfonyolrandir
 
Autenticazione delle api con jwt e symfony (Italian)
Autenticazione delle api con jwt e symfony (Italian)Autenticazione delle api con jwt e symfony (Italian)
Autenticazione delle api con jwt e symfony (Italian)Marco Albarelli
 

Destaque (20)

Symfony Best Practices
Symfony Best PracticesSymfony Best Practices
Symfony Best Practices
 
Symfony2: 30 astuces et bonnes pratiques
Symfony2: 30 astuces et bonnes pratiquesSymfony2: 30 astuces et bonnes pratiques
Symfony2: 30 astuces et bonnes pratiques
 
Dev traning 2016 symfony
Dev traning 2016   symfonyDev traning 2016   symfony
Dev traning 2016 symfony
 
Mastering Twig (DrupalCon Barcelona 2015)
Mastering Twig (DrupalCon Barcelona 2015)Mastering Twig (DrupalCon Barcelona 2015)
Mastering Twig (DrupalCon Barcelona 2015)
 
Design patterns avec Symfony
Design patterns avec SymfonyDesign patterns avec Symfony
Design patterns avec Symfony
 
Symfony Components
Symfony ComponentsSymfony Components
Symfony Components
 
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years later
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years laterSymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years later
SymfonyCon Berlin 2016 - Symfony Plugin for PhpStorm - 3 years later
 
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ss
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ssAlphorm.com Support de la Formation Symfony 3 , les fondamentaux-ss
Alphorm.com Support de la Formation Symfony 3 , les fondamentaux-ss
 
ゲームツクール第8回「Unity×Photon Cloud」
ゲームツクール第8回「Unity×Photon Cloud」ゲームツクール第8回「Unity×Photon Cloud」
ゲームツクール第8回「Unity×Photon Cloud」
 
Symfony2 - garść porad
Symfony2 - garść poradSymfony2 - garść porad
Symfony2 - garść porad
 
symfony 1.1 goodness (Dutch PHP Conference 2008)
symfony 1.1 goodness (Dutch PHP Conference 2008)symfony 1.1 goodness (Dutch PHP Conference 2008)
symfony 1.1 goodness (Dutch PHP Conference 2008)
 
Symfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processingSymfony bundle fo asynchronous job processing
Symfony bundle fo asynchronous job processing
 
Symfony Components 2.0 on PHP 5.3
Symfony Components 2.0 on PHP 5.3Symfony Components 2.0 on PHP 5.3
Symfony Components 2.0 on PHP 5.3
 
Debugging and Profiling Symfony Apps
Debugging and Profiling Symfony AppsDebugging and Profiling Symfony Apps
Debugging and Profiling Symfony Apps
 
symfony Live 2010 - Using Doctrine Migrations
symfony Live 2010 -  Using Doctrine Migrationssymfony Live 2010 -  Using Doctrine Migrations
symfony Live 2010 - Using Doctrine Migrations
 
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketw
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketwAsynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketw
Asynchroniczny PHP i komunikacja czasu rzeczywistego z wykorzystaniem websocketw
 
Przetwarzanie asynchroniczne w zastosowaniach webowych
Przetwarzanie asynchroniczne w zastosowaniach webowychPrzetwarzanie asynchroniczne w zastosowaniach webowych
Przetwarzanie asynchroniczne w zastosowaniach webowych
 
Clever and innovative use of trends in HR
Clever and innovative use of trends in HRClever and innovative use of trends in HR
Clever and innovative use of trends in HR
 
Building a documented RESTful API in just a few hours with Symfony
Building a documented RESTful API in just a few hours with SymfonyBuilding a documented RESTful API in just a few hours with Symfony
Building a documented RESTful API in just a few hours with Symfony
 
Autenticazione delle api con jwt e symfony (Italian)
Autenticazione delle api con jwt e symfony (Italian)Autenticazione delle api con jwt e symfony (Italian)
Autenticazione delle api con jwt e symfony (Italian)
 

Semelhante a 30 Symfony Best Practices

Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Stefan Koopmanschap
 
Myphp-busters: symfony framework
Myphp-busters: symfony frameworkMyphp-busters: symfony framework
Myphp-busters: symfony frameworkStefan Koopmanschap
 
Write Plugins for symfony (Symfony Camp 2007)
Write Plugins for symfony (Symfony Camp 2007)Write Plugins for symfony (Symfony Camp 2007)
Write Plugins for symfony (Symfony Camp 2007)Fabien Potencier
 
Myphp-busters: symfony framework (php|tek 09)
Myphp-busters: symfony framework (php|tek 09)Myphp-busters: symfony framework (php|tek 09)
Myphp-busters: symfony framework (php|tek 09)Stefan Koopmanschap
 
symfony: Open-Source Enterprise Framework
symfony: Open-Source Enterprise Frameworksymfony: Open-Source Enterprise Framework
symfony: Open-Source Enterprise FrameworkFabien Potencier
 
Symfony workshop introductory slides
Symfony workshop introductory slidesSymfony workshop introductory slides
Symfony workshop introductory slidesStefan Koopmanschap
 
Apple techmanuals verd
Apple techmanuals verdApple techmanuals verd
Apple techmanuals verdSherri Gunder
 

Semelhante a 30 Symfony Best Practices (7)

Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)Myphp-busters: symfony framework (PHPCon.it)
Myphp-busters: symfony framework (PHPCon.it)
 
Myphp-busters: symfony framework
Myphp-busters: symfony frameworkMyphp-busters: symfony framework
Myphp-busters: symfony framework
 
Write Plugins for symfony (Symfony Camp 2007)
Write Plugins for symfony (Symfony Camp 2007)Write Plugins for symfony (Symfony Camp 2007)
Write Plugins for symfony (Symfony Camp 2007)
 
Myphp-busters: symfony framework (php|tek 09)
Myphp-busters: symfony framework (php|tek 09)Myphp-busters: symfony framework (php|tek 09)
Myphp-busters: symfony framework (php|tek 09)
 
symfony: Open-Source Enterprise Framework
symfony: Open-Source Enterprise Frameworksymfony: Open-Source Enterprise Framework
symfony: Open-Source Enterprise Framework
 
Symfony workshop introductory slides
Symfony workshop introductory slidesSymfony workshop introductory slides
Symfony workshop introductory slides
 
Apple techmanuals verd
Apple techmanuals verdApple techmanuals verd
Apple techmanuals verd
 

Último

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Último (20)

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

30 Symfony Best Practices

  • 1. 30 Symfony Best Practices 30 Symfony Best Practices SymfonyDay ’09, Cologne, Germany September 4th, 2009 Nicolas Perriault
  • 2. 30 Symfony Best Practices Best Practices? A Best practice is a technique, method, process, activity, incentive or reward that is believed to be more effective at delivering a particular outcome than any other technique, method, process, etc.The idea is that with proper processes, checks, and testing, a desired outcome can be delivered with fewer problems and unforeseen complications. Best practices can also be defined as the most efficient (least amount of effort) and effective (best results) way of accomplishing a task, based on repeatable procedures that have proven themselves over time for large numbers of people. -- Wikipedia, august 2009 Nicolas Perriault 2
  • 3. 30 Symfony Best Practices Best Practices? Making. Stuff. Efficient. Nicolas Perriault 3
  • 4. 30 Symfony Best Practices Best Practices? • Moreover, best practices in software development and symfony are all about: • improving communication between developers through standardization • enhancing security, maintainability, portability and interoperability by increasing code quality Nicolas Perriault 4
  • 5. 30 Symfony Best Practices Disclaimer • These best practices are not sorted by importance, nor criticality • All best practices listed here are debatable, at least because they’re based on my own experience • There are always exceptions • Some best practices are not symfony-specific ; “Zake Igniter” developers, you can take some notes too. Nicolas Perriault 5
  • 6. 30 Symfony Best Practices Let’s begin... Nicolas Perriault
  • 7. 30 Symfony Best Practices #0 • Always write “symfony” starting with a small cap. Nicolas Perriault 7
  • 8. 30 Symfony Best Practices #0 • Always write “symfony” starting with a small cap. • Or maybe not (mostly depends on the result of rand(0, 1)) Nicolas Perriault 7
  • 9. 30 Symfony Best Practices #1 • Manage the View within the View • View is intended to be handled in templates • Try to avoid the use of the view.yml file • Try to avoid handling the view from the controller (eeeek) or the model (you’re fired) • Slots can help (a lot) Nicolas Perriault 8
  • 10. 30 Symfony Best Practices #1 For example, handling <title> tag and assets: Note: here the value of $defaultTitle could (should) be handled in an app.yml configuration file Nicolas Perriault 9
  • 11. 30 Symfony Best Practices #1 • Remember this: if you’re a graphic designer/ integrator, you don’t want to deal with YAML or complex PHP code to manage the presentation Nicolas Perriault 10
  • 12. 30 Symfony Best Practices #2 • Always enable output escaping and CSRF protection • starting with symfony 1.3, they’re enabled by default Nicolas Perriault 11
  • 13. 30 Symfony Best Practices GOOD Nicolas Perriault 12
  • 14. 30 Symfony Best Practices #3 • Always call a redirect after posting data • for security purpose • for ergonomy • to avoid duplicates in database • don’t forget to add a flash message to the end user after every transaction made Nicolas Perriault 13
  • 15. 30 Symfony Best Practices BAD Nicolas Perriault 14
  • 16. 30 Symfony Best Practices GOOD Nicolas Perriault 15
  • 17. 30 Symfony Best Practices #4 • No Propel Criteria or Doctrine_Query instances, SQL queries and any ORM/RDBMS specific calls should ever be found neither in the templates nor in the actions. • The more you couple your model to your controllers and views, the more it’ll be hard to change your persistence backend or strategy. Nicolas Perriault 16
  • 18. 30 Symfony Best Practices BAD Doctrine_Collection Nicolas Perriault 17
  • 19. 30 Symfony Best Practices BETTER Array Nicolas Perriault 18
  • 20. 30 Symfony Best Practices GOOD Array (ideally) Nicolas Perriault 19
  • 21. 30 Symfony Best Practices #5 • Symfony core files should never be modified to add or change the features they provide, but replaced through the autoloading mechanism, or way better: extended. • Tweaking the factories.yml file and catching native symfony events can help a lot achieving this goal. Nicolas Perriault 20
  • 22. 30 Symfony Best Practices BAD Unused Nicolas Perriault 21
  • 23. 30 Symfony Best Practices GOOD Nicolas Perriault 22
  • 24. 30 Symfony Best Practices #6 • The templates must contain PHP alternative templating syntax, for readability and ease of use. Nicolas Perriault 23
  • 25. 30 Symfony Best Practices BAD Nicolas Perriault 24
  • 26. 30 Symfony Best Practices GOOD Nicolas Perriault 25
  • 27. 30 Symfony Best Practices #7 • Verify cache settings, especially that the cache is actually enabled in prod environment. Don’t laugh, it happened quite a lot. • If you use cache, create a staging environment to test the caching strategy if it doesn't exist. • Better: avoid using cache. No kidding. Nicolas Perriault 26
  • 28. 30 Symfony Best Practices GOOD Nicolas Perriault 27
  • 29. 30 Symfony Best Practices #8 • Use routes instead of raw module/action couple in url_for(), link_to() and redirect() calls. • Also, default routes should be deactivated by default (at least in apps which don’t run admin-generator 1.0 modules) Nicolas Perriault 28
  • 30. 30 Symfony Best Practices #9 • All code comments, phpdoc, INSTALL, CHANGELOG and README files, variables, functions, classes and methods names and more generally the developer documentation, should be written in English. Nicolas Perriault 29
  • 31. 30 Symfony Best Practices BAD Nicolas Perriault 30
  • 32. 30 Symfony Best Practices GOOD Nicolas Perriault 31
  • 33. 30 Symfony Best Practices #10 • Catch and log exception messages, display human readable error messages to the end user Nicolas Perriault 32
  • 34. 30 Symfony Best Practices BAD Nicolas Perriault 33
  • 35. 30 Symfony Best Practices GOOD Nicolas Perriault 34
  • 36. 30 Symfony Best Practices #11 • Only deploy production front controllers in production Nicolas Perriault 35
  • 37. 30 Symfony Best Practices BAD Nicolas Perriault 36
  • 38. 30 Symfony Best Practices BAD Nicolas Perriault 37
  • 39. 30 Symfony Best Practices #12 • Ideally: • A typical controller method should never exceed ~30 lines. • A typical controller class should never have more than ~15 action methods. Nicolas Perriault 38
  • 40. x 30 Symfony Best Practices BAD Nicolas Perriault ~2000 lines on this actions class (the slidescreen size was to short to list them all). Unmaintenable. 39
  • 41. 30 Symfony Best Practices #13 • Always apply consistent coding standards. • Always apply Symfony’s coding standards. http://trac.symfony-project.org/wiki/HowToContributeToSymfony#CodingStandards Nicolas Perriault 40
  • 42. 30 Symfony Best Practices BAD Nicolas Perriault 41
  • 43. 30 Symfony Best Practices GOOD Nicolas Perriault 42
  • 44. 30 Symfony Best Practices #14 • Session persistence logic should reside in sfUser derived class methods, and only them. Nicolas Perriault 43
  • 45. 30 Symfony Best Practices BAD Nicolas Perriault 44
  • 46. 30 Symfony Best Practices GOOD Nicolas Perriault 45
  • 47. 30 Symfony Best Practices #15 • Never serialize objects in the session Nicolas Perriault 46
  • 48. 30 Symfony Best Practices BAD Nicolas Perriault 47
  • 49. 30 Symfony Best Practices GOOD Note: of course, a setRecentlySeenProducts() method could have been implemented in the myUser class. Nicolas Perriault 48
  • 50. 30 Symfony Best Practices #16 • Always create customized 404 error and 500 error pages Nicolas Perriault 49
  • 51. 30 Symfony Best Practices BAD Nicolas Perriault 50
  • 52. 30 Symfony Best Practices GOOD Nicolas Perriault 51
  • 53. 30 Symfony Best Practices #17 • There should never be any direct use of sfContext inside the Model layer (eg. sfContext::getInstance()) • Because the sfContext instance you get can differ a lot regarding the used env (cli, test, dev, prod...) • It would make your code quite untestable • Yes, it’s hard. Nicolas Perriault 52
  • 54. 30 Symfony Best Practices BAD Nicolas Perriault 53
  • 55. 30 Symfony Best Practices BAD Nicolas Perriault 54
  • 56. 30 Symfony Best Practices GOOD Nicolas Perriault 55
  • 57. 30 Symfony Best Practices GOOD Nicolas Perriault 56
  • 58. 30 Symfony Best Practices #18 • Avoid creating a big generic utility class with many static methods • It's like reinventing procedural programming or using functions • Write specialized classes Nicolas Perriault 57
  • 59. 30 Symfony Best Practices #19 • Use sfLogger for debugging instead of echoing variable or debug messages • FirePHP(1) or FireSymfony(2) custom loggers can be more than helpful to debug your app (webservices for example) (1) http://firephp.org/ (2) http://firesymfony.org/ Nicolas Perriault 58
  • 60. 30 Symfony Best Practices GOOD factories.yml The FireSymfony Firebug extension for Firefox in action Nicolas Perriault 59
  • 61. 30 Symfony Best Practices #20 • If source code is managed through a SCM tool, versioned files should NEVER contain passwords, local paths, etc. • Files containing them should be added to the ignore directive • Typical example: the databases.yml file • Distribute platform-dependent configuration files Nicolas Perriault 60
  • 62. 30 Symfony Best Practices BAD Nicolas Perriault 61
  • 63. 30 Symfony Best Practices GOOD Nicolas Perriault 62
  • 64. 30 Symfony Best Practices #21 • Write unit and functional tests: • Unit test symfony business logicit’s don’t test your or Doctrine again, (please already done) • Functionally test the user interface when it’s important (eg. 404/403/401 HTTP codes, security and user authentication, transactions and forms, etc.) Nicolas Perriault 63
  • 65. 30 Symfony Best Practices #21 Hint: you can write your own functional browser/ tester to avoid duplicate test code Nicolas Perriault 64
  • 66. 30 Symfony Best Practices #22 • Never use absolute paths in code, or at least put them in YAML configuration files. • Make your symfony project portable: use dirname(__FILE__) to point at the symfony libs in the project configuration class. • You can put symfony lib in a lib/vendor dir. Nicolas Perriault 65
  • 67. 30 Symfony Best Practices BAD Nicolas Perriault 66
  • 68. 30 Symfony Best Practices GOOD Nicolas Perriault 67
  • 69. 30 Symfony Best Practices #23 • Data objects should always be represented by a slug in urls, not a primary key • For security: numeric PKs are easily guessable, whereas slugs are not • For URL usability and SEO: /article/symfony-rulez.html is sexier than /article/123.html Nicolas Perriault 68
  • 70. 30 Symfony Best Practices #24 • Every application or project specific configuration variable should be stored in its app.yml file • You can share project-wide (cross- applications) settings by putting an app.yml file within the root config/ folder of the project Nicolas Perriault 69
  • 71. 30 Symfony Best Practices BAD Nicolas Perriault 70
  • 72. 30 Symfony Best Practices GOOD Default value Nicolas Perriault 71
  • 73. 30 Symfony Best Practices #25 • Avoid versioning any generated Base* class file, especially if you want to write reusable plugins or redistribute your work. • Maybe people will want to extend or add behaviors to your model classes. Nicolas Perriault 72
  • 74. 30 Symfony Best Practices #26 • Use symfony tasks system for CLI batch scripts • Tasks have access to all the symfony facilities • Tasks are designed for the CLI • Text output • Pretty printing Nicolas Perriault 73
  • 75. 30 Symfony Best Practices #26 Nicolas Perriault 74
  • 76. 30 Symfony Best Practices #27 • Alter request and response programmatically by using filters. • You can use the request.filter_parameters and response.filter_content events too. • Filters are easy to setup and to debug, whereas events are more clean and powerful. Matter of taste. Nicolas Perriault 75
  • 77. 30 Symfony Best Practices GOOD Nicolas Perriault 76
  • 78. 30 Symfony Best Practices GOOD Nicolas Perriault 77
  • 79. 30 Symfony Best Practices #28 • Always write a README, an INSTALL and a CHANGELOG file at the root of the project (or the plugin). If open sourced, a LICENSE file is appreciated too. • And please don’t release plugins under the terms of the GPL license. Symfony Plugin != Operating System Nicolas Perriault 78
  • 80. 30 Symfony Best Practices #29 • Share features and modules across applications by writing plugins • If it’s really cool, release it publicly Nicolas Perriault 79
  • 81. 30 Symfony Best Practices #30 • Study other frameworks code! • They might have good, even better ideas to solve the problem you have • Even frameworks written in other languages than PHP (Django, Rails, Spring...) Nicolas Perriault 80
  • 82. 30 Symfony Best Practices Questions? Nicolas Perriault nperriault@gmail.com +33 660 920 867 prendreuncafe.com | symfonians.net | symfony-project.org Nicolas Perriault